Skip to content

Commit

Permalink
add 2 new categories to OIG reports (#4837)
Browse files Browse the repository at this point in the history
  • Loading branch information
patphongs authored Aug 27, 2021
1 parent 95c88e2 commit 739dd03
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fec/fec/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
23 changes: 23 additions & 0 deletions fec/home/migrations/0116_auto_20210818_1041.py
Original file line number Diff line number Diff line change
@@ -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),
),
]

0 comments on commit 739dd03

Please sign in to comment.