1 from forum.settings.base import Setting, SettingSet
 
   2 from django.forms.widgets import Textarea
 
   4 ROBOTS_SET = SettingSet('robots', 'Robots txt', "Set up the robots.txt file.", 3000)
 
   6 ROBOTS_FILE = Setting('ROBOTS_FILE',
 
  12 """, ROBOTS_SET, dict(
 
  13 label = "Robots.txt file",
 
  15 The robots.txt file search engine spiders will see.
 
  17 widget=Textarea(attrs={'rows': '20'})))