diff --git a/fec/fec/constants.py b/fec/fec/constants.py index 3458f7bb5e..9e155cd542 100644 --- a/fec/fec/constants.py +++ b/fec/fec/constants.py @@ -145,6 +145,8 @@ oig_reports = OrderedDict((x.lower(), x) for x in [ "Audit report", "Inspection or special review report", + "Investigations", + "Other reports and plans", "Semiannual report", "Strategic plan", "Work plan", diff --git a/fec/home/migrations/0116_auto_20210818_1041.py b/fec/home/migrations/0116_auto_20210818_1041.py new file mode 100644 index 0000000000..b4c04c16f8 --- /dev/null +++ b/fec/home/migrations/0116_auto_20210818_1041.py @@ -0,0 +1,23 @@ +# Generated by Django 3.1.8 on 2021-08-18 14:41 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('home', '0115_auto_20210506_2326'), + ] + + operations = [ + migrations.AlterField( + model_name='documentpage', + name='category', + field=models.CharField(choices=[('audit report', 'Audit report'), ('inspection or special review report', 'Inspection or special review report'), ('investigations', 'Investigations'), ('other reports and plans', 'Other reports and plans'), ('semiannual report', 'Semiannual report'), ('strategic plan', 'Strategic plan'), ('work plan', 'Work plan'), ('agency financial report', 'Agency Financial Report'), ('congressional submission', 'Congressional submission'), ('performance and accountability report', 'Performance and accountability report'), ('summary of performance and financial information', 'Summary of performance and financial information'), ('annual report', 'Annual report'), ('summary report', 'Summary report'), ('privacy act notice', 'Privacy Act notice'), ('privacy policy', 'Privacy policy'), ('buy america report', 'Buy America report'), ('fair act', 'FAIR Act'), ('public procurement report', 'Public procurement report'), ('anniversary report', 'Anniversary report'), ('gift report', 'Gift report'), ('shutdown plan', 'Shutdown plan'), ('study', 'Study')], max_length=255, null=True), + ), + migrations.AlterField( + model_name='resourcepage', + name='category', + field=models.CharField(blank=True, choices=[('audit report', 'Audit report'), ('inspection or special review report', 'Inspection or special review report'), ('investigations', 'Investigations'), ('other reports and plans', 'Other reports and plans'), ('semiannual report', 'Semiannual report'), ('strategic plan', 'Strategic plan'), ('work plan', 'Work plan'), ('agency financial report', 'Agency Financial Report'), ('congressional submission', 'Congressional submission'), ('performance and accountability report', 'Performance and accountability report'), ('summary of performance and financial information', 'Summary of performance and financial information'), ('annual report', 'Annual report'), ('summary report', 'Summary report'), ('privacy act notice', 'Privacy Act notice'), ('privacy policy', 'Privacy policy'), ('buy america report', 'Buy America report'), ('fair act', 'FAIR Act'), ('public procurement report', 'Public procurement report'), ('anniversary report', 'Anniversary report'), ('gift report', 'Gift report'), ('shutdown plan', 'Shutdown plan'), ('study', 'Study')], help_text='If this is a report, add a category', max_length=255, null=True), + ), + ]