]> git.openstreetmap.org Git - osqa.git/blob - forum/settings/faq.py
a5daa56e80a22b8145035f8be5a1761fd17e895b
[osqa.git] / forum / settings / faq.py
1 from base import Setting, SettingSet
2 from django.forms.widgets import Textarea
3
4 FAQ_SET = SettingSet('faq', 'FAQ page', "Define the text in the about page. You can use markdown and some basic html tags.", 2000, True)
5
6 FAQ_PAGE_TEXT = Setting('FAQ_PAGE_TEXT',
7 """
8
9 """, FAQ_SET, dict(
10 label = "FAQ page text",
11 help_text = " The faq page. ",
12 widget=Textarea(attrs={'rows': '25'})))