Package madrona :: Package simplefaq :: Module models :: Class Faq
[hide private]

Class Faq

source code

django.contrib.gis.db.models.Model --+
                                     |
                                    Faq

Instance Methods [hide private]
 
__unicode__(self) source code
Class Variables [hide private]
  IMPORTANCE_CHOICES = 1, '1', (2, '2'), (3, '3'), (4, '4'), (5,...
  question = models.TextField(max_length= 200)
  answer = models.TextField(max_length= 2000)
  importance = models.IntegerField(choices= IMPORTANCE_CHOICES)
  faq_group = models.ForeignKey(FaqGroup)
Class Variable Details [hide private]

IMPORTANCE_CHOICES

Value:
1, '1', (2, '2'), (3, '3'), (4, '4'), (5, '5'), (6, '6'), (7, '7'), (8\
, '8'), (9, '9'), (10, '10')