|
@@ -13,8 +13,8 @@ import markdown
|
|
|
class Document(models.Model):
|
|
|
""" A document is a scenario or a record from facts, on 1 month.
|
|
|
"""
|
|
|
- TYPE_FACT = 'fact'
|
|
|
- TYPE_PLAN = 'plan'
|
|
|
+ TYPE_PUBLIC = 'fact'
|
|
|
+ TYPE_DRAFT = 'plan'
|
|
|
|
|
|
name = models.CharField('Nom', max_length=130)
|
|
|
comment = models.TextField(
|
|
@@ -25,9 +25,9 @@ class Document(models.Model):
|
|
|
default=datetime.datetime.now,
|
|
|
help_text="Date de création du document")
|
|
|
type = models.CharField(max_length=10, choices=(
|
|
|
- (TYPE_FACT, 'rapport de transparence'),
|
|
|
- (TYPE_PLAN, 'estimation ou étude'),
|
|
|
- ))
|
|
|
+ (TYPE_PUBLIC, 'Rapport public'),
|
|
|
+ (TYPE_DRAFT, 'Rapport brouillon'),
|
|
|
+ ), help_text="Un rapport brouillon n'est pas visible publiquement")
|
|
|
|
|
|
class Meta:
|
|
|
ordering = ['-date']
|