File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -20,9 +20,10 @@ class Migration(migrations.Migration):
20
20
name = "export_type" ,
21
21
field = models .CharField (
22
22
choices = [
23
- ("dref-applications" , "Dref Applications" ),
24
- ("dref-operational-updates" , "Dref Operational Updates" ),
25
- ("dref-final-reports" , "Dref Final Reports" ),
23
+ ("dref-applications" , "DREF Application" ),
24
+ ("dref-operational-updates" , "DREF Operational Update" ),
25
+ ("dref-final-reports" , "DREF Final Report" ),
26
+ ("old-dref-final-reports" , "Old DREF Final Report" ),
26
27
("per" , "Per" ),
27
28
],
28
29
max_length = 255 ,
Original file line number Diff line number Diff line change @@ -2537,9 +2537,10 @@ class ExportStatus(models.IntegerChoices):
2537
2537
ERRORED = 2 , _ ("Errored" )
2538
2538
2539
2539
class ExportType (models .TextChoices ):
2540
- DREF = "dref-applications" , _ ("Dref Applications" )
2541
- OPS_UPDATE = "dref-operational-updates" , _ ("Dref Operational Updates" )
2542
- FINAL_REPORT = "dref-final-reports" , _ ("Dref Final Reports" )
2540
+ DREF = "dref-applications" , _ ("DREF Application" )
2541
+ OPS_UPDATE = "dref-operational-updates" , _ ("DREF Operational Update" )
2542
+ FINAL_REPORT = "dref-final-reports" , _ ("DREF Final Report" )
2543
+ OLD_FINAL_REPORT = "old-dref-final-reports" , _ ("Old DREF Final Report" )
2543
2544
PER = "per" , _ ("Per" )
2544
2545
2545
2546
export_id = models .IntegerField (verbose_name = _ ("Export Id" ))
You can’t perform that action at this time.
0 commit comments