Answer the question
In order to leave comments, you need to log in
What WYSIWYG editor are you using with django-parler?
Please tell me a good WYSIWYG editor to look good.
django version==1.11
Answer the question
In order to leave comments, you need to log in
And this one is normal, just set float: none to the label tag via css. I added css like this:
from django.contrib import admin
from blog.models import Category, Article
from parler.admin import TranslatableAdmin
from .forms import ArticleForm
from django.core.exceptions import PermissionDenied
class CategoryAdmin(TranslatableAdmin):
pass
class ArticleAdmin(TranslatableAdmin):
form = ArticleForm
list_display = ('title', 'author', 'category')
class Media:
css = {
'all': ('css/admin/blog.css',)
}
admin.site.register(Category, CategoryAdmin)
admin.site.register(Article, ArticleAdmin)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question