Skip to content
Snippets Groups Projects
Commit fa242070 authored by Hangzhi Yu's avatar Hangzhi Yu
Browse files

Update models.py in order to ensure compatibility with <ul> tags.

parent ba4890b0
No related branches found
No related tags found
1 merge request!4Include my work from our last meeting
......@@ -36,7 +36,10 @@ class FAQQuestion(models.Model):
verbose_name=_("Symbol"))
show = models.BooleanField(verbose_name=_("Published"), default=False)
answer_text = RichTextField(help_text="")
answer_text = RichTextField(help_text="Aus Gründen des "
"verwendeten CSS-Frameworks muss der Tag <strong>&lt;ul&gt;</strong> die "
"CSS-Klasse <em>browser-default</em> besitzen! "
"Bitte verwende hierzu den manuellen Bearbeitungsmodus.")
section = models.ForeignKey(FAQSection, on_delete=models.CASCADE, blank=True, related_name="questions",
verbose_name=_("Section"))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment