The Issue
The name of the model field is not visible in Django's admin "add" page when using django-tinymce's tinymce_models.HTMLField()
. The Name:
field is in the picture, but the Description
field is not. How can I display the Description
text over the TinyMCE editor?
The Model
class Project(models.Model):
name = models.CharField(max_length=255)
slug = models.SlugField(unique=True, max_length=255)
description = tinymce_models.HTMLField()
started = models.DateField(blank=True)
Versions
- Django 1.10.4
- django-tinymce 2.4.0
- Tiny MCE 4.5.2
A Bunch of Code
https://codepen.io/anon/pen/xgqRqM
HTML is directly from Chrome Developer Tools on the Django admin page for adding this model. CSS is both Django's and Tiny MCE's. JS is from the Tiny MCE theme. It doesn't seem to render correctly on Codepen so I'm not sure how useful it will be...
Let me know if there's any more clarifying information I can provide.
More Pictures