-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ajouter des nouveaux types de documents
- Loading branch information
Showing
4 changed files
with
65 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Generated by Django 5.0.3 on 2024-10-28 09:00 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("core", "0016_alter_message_message_type_finsuivicontact_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="document", | ||
name="document_type", | ||
field=models.CharField( | ||
choices=[ | ||
( | ||
"arrete prefectoral ministériel", | ||
"Arrêté préfectoral/ministériel", | ||
), | ||
("autre", "Autre document"), | ||
("cartographie", "Cartographie"), | ||
("certificat phytosanitaire", "Certificat phytosanitaire"), | ||
("compte rendu reunion", "Compte rendu de réunion"), | ||
("courrier officiel", "Courrier officiel"), | ||
("dsce", "DSCE"), | ||
("facture", "Facture"), | ||
("image", "Image"), | ||
("passeport phytosanitaire", "Passeport phytosanitaire"), | ||
("rapport analyse", "Rapport d'analyse"), | ||
("rapport inspection", "Rapport d'inspection"), | ||
("reglementation", "Réglementation"), | ||
("document de transport", "Document de transport"), | ||
], | ||
max_length=100, | ||
verbose_name="Type de document", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters