Skip to content

Commit

Permalink
added an order field to the Question model
Browse files Browse the repository at this point in the history
  • Loading branch information
howiworkdaily committed Sep 26, 2008
1 parent 4b87764 commit 3f468ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion faq/models.py
Expand Up @@ -27,7 +27,7 @@ class Question(FaqBase):
slug = models.SlugField( max_length=100, help_text="This is a unique identifier that allows your questions to display its detail view, ex 'how-can-i-contribute'", )
text = models.TextField(_('question'), help_text='The actual question itself.')
status = models.IntegerField( choices=enums.QUESTION_STATUS_CHOICES, default=enums.STATUS_INACTIVE, help_text="Only questions with their status set to 'Active' will be displayed. " )
order = models.IntegerField(_('order'), help_text='The order you would like the question to be displayed')
order = models.IntegerField(_('order'), help_text='The order you would like the question to be displayed.')

objects = QuestionManager()

Expand Down

0 comments on commit 3f468ca

Please sign in to comment.