Python wagtail.core.fields.RichTextField() Examples
The following are 1
code examples of wagtail.core.fields.RichTextField().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
wagtail.core.fields
, or try the search function
.
Example #1
Source File: edit_handlers.py From wagtail with BSD 3-Clause "New" or "Revised" License | 5 votes |
def get_comparison_class(self): # Hide fields with hidden widget widget_override = self.widget_overrides().get(self.field_name, None) if widget_override and widget_override.is_hidden: return try: field = self.db_field if field.choices: return compare.ChoiceFieldComparison if field.is_relation: if isinstance(field, TaggableManager): return compare.TagsFieldComparison elif field.many_to_many: return compare.M2MFieldComparison return compare.ForeignObjectComparison if isinstance(field, RichTextField): return compare.RichTextFieldComparison if isinstance(field, (CharField, TextField)): return compare.TextFieldComparison except FieldDoesNotExist: pass return compare.FieldComparison