You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.
Making a TextField to be wysiwig editable is quite unpleasant and unflexible with django-wysiwig. Especially making new admin templates. I would suggest something like:
class MassCommunicationAdmin(WysiwigAdminMixin, admin.ModelAdmin):
list_display = ('text_field',)
wysiwig_fields = ('text_field',)
I could try to program this solution, but I want to know more opinions. What do you think about this? Is there any obstacle, or conceptual problem with this?
The text was updated successfully, but these errors were encountered:
I looked at the code, and it might be quite easy. But then I thought about it, and I think it would be better to make wysiwyg widget, so it could be used both in AdminForm and non-admin forms.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Making a
TextField
to be wysiwig editable is quite unpleasant and unflexible with django-wysiwig. Especially making new admin templates. I would suggest something like:I could try to program this solution, but I want to know more opinions. What do you think about this? Is there any obstacle, or conceptual problem with this?
The text was updated successfully, but these errors were encountered: