1 from base import Setting, SettingSet
2 from django.forms.widgets import Textarea
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)
6 FAQ_PAGE_TEXT = Setting('FAQ_PAGE_TEXT',
10 label = "FAQ page text",
11 help_text = " The faq page. ",
12 widget=Textarea(attrs={'rows': '25'})))