diff --git a/camp_fin/management/commands/import_data.py b/camp_fin/management/commands/import_data.py index f05e7f1..b54b5fc 100644 --- a/camp_fin/management/commands/import_data.py +++ b/camp_fin/management/commands/import_data.py @@ -66,15 +66,15 @@ } FILE_LOOKUP = { - 'campaign': 'Cam_Campaign.xlsx', + 'campaign': 'Cam_Campaign.csv', 'transaction': 'Cam_ContribExpenditure.zip', 'transactiontype': 'Cam_ContribExpenditureType.xlsx', 'office': 'Cam_ElectionOffice.xlsx', - 'filingperiod': 'Cam_FilingPeriod.xlsx', + 'filingperiod': 'Cam_FilingPeriod.csv', 'officetype': 'Cam_OfficeType.xlsx', - 'filing': 'Cam_Report.xlsx', - 'candidate': 'Cam_Candidate.xlsx', - 'pac': 'Cam_PoliticalActionCommittee.xlsx', + 'filing': 'Cam_Report.csv', + 'candidate': 'Cam_Candidate.csv', + 'pac': 'Cam_PoliticalActionCommittee.csv', 'campaignstatus': 'Cam_CampaignStatus.xlsx', 'county': 'Cam_County.xlsx', 'district': 'Cam_District.xlsx', @@ -83,8 +83,8 @@ 'entity': 'Cam_Entity.xlsx', 'entitytype': 'Cam_EntityType.xlsx', 'filingtype': 'Cam_FilingPeriodType.xlsx', - 'loan': 'Cam_Loan.xlsx', - 'loantransaction': 'Cam_LoanTransaction.xlsx', + 'loan': 'Cam_Loan.csv', + 'loantransaction': 'Cam_LoanTransaction.csv', 'loantransactiontype': 'Cam_LoanTransactionType.xlsx', 'politicalparty': 'Cam_PoliticalParty.xlsx', 'specialevent': 'Cam_SpecialEvent.xlsx', @@ -93,17 +93,17 @@ 'contacttype': 'Cam_ContactType.xlsx', 'contact': 'Cam_Contact.csv', 'state': 'States.csv', - 'lobbyist': 'Cam_Lobbyist.xlsx', + 'lobbyist': 'Cam_Lobbyist.csv', 'lobbyistregistration': 'Cam_LobbystRegistration.xlsx', - 'lobbyistemployer': 'Cam_LobbyistEmployer.xlsx', + 'lobbyistemployer': 'Cam_LobbyistEmployer.csv', 'organization': 'Cam_Organization.xlsx', - 'lobbyistfilingperiod': 'Cam_FilingPeriodLobbyist.xlsx', - 'lobbyisttransaction': 'Cam_ContribExpenditureLobbyist.xlsx', - 'lobbyisttransactiontype': 'Cam_ContribExpenditureLobbyistType.xlsx', - 'lobbyistbundlingdisclosure': 'Cam_BundlingDisclosureLobbyist.xlsx', - 'lobbyistbundlingdisclosurecontributor': 'Cam_BundlingDisclosureLobbyistContributor.xlsx', - 'lobbyistreport': 'Cam_ReportLobbyist.xlsx', - 'lobbyistspecialevent': 'Cam_SpecialEventLobbyist.xlsx', + 'lobbyistfilingperiod': 'Cam_FilingPeriodLobbyist.csv', + 'lobbyisttransaction': 'Cam_ContribExpenditureLobbyist.csv', + 'lobbyisttransactiontype': 'Cam_ContribExpenditureLobbyistType.csv', + 'lobbyistbundlingdisclosure': 'Cam_BundlingDisclosureLobbyist.csv', + 'lobbyistbundlingdisclosurecontributor': 'Cam_BundlingDisclosureLobbyistContributor.csv', + 'lobbyistreport': 'Cam_ReportLobbyist.csv', + 'lobbyistspecialevent': 'Cam_SpecialEventLobbyist.csv', } class Command(BaseCommand): diff --git a/camp_fin/management/commands/table_mappers.py b/camp_fin/management/commands/table_mappers.py index 204b220..50a626d 100644 --- a/camp_fin/management/commands/table_mappers.py +++ b/camp_fin/management/commands/table_mappers.py @@ -233,7 +233,7 @@ LOAN = OrderedDict([ ("loanid",{'field': 'id', 'data_type': 'bigint'}), ("contactid",{'field': 'contact_id', 'data_type': 'bigint'}), - ("amount",{'field': 'amount', 'data_type': 'double precision'}), + ("amount",{'field': 'amount', 'data_type': 'money::numeric::double precision'}), ("datereceived",{'field': 'received_date', 'data_type': 'timestamp with time zone'}), ("dateadded",{'field': 'date_added', 'data_type': 'timestamp with time zone'}), ("checknumber",{'field': 'check_number', 'data_type': 'varchar'}), @@ -266,7 +266,7 @@ LOAN_TRANSACTION = OrderedDict([ ("loantransactionid", {'field': 'id', 'data_type': 'bigint'}), ("loanid", {'field': 'loan_id', 'data_type': 'bigint'}), - ("amount", {'field': 'amount', 'data_type': 'double precision'}), + ("amount", {'field': 'amount', 'data_type': 'money::numeric::double precision'}), ("interestpaid", {'field': 'interest_paid', 'data_type': 'double precision'}), ("date", {'field': 'transaction_date', 'data_type': 'timestamp with time zone'}), ("dateadded", {'field': 'date_added', 'data_type': 'timestamp with time zone'}), diff --git a/camp_fin/templates/base.html b/camp_fin/templates/base.html index 12b9935..8b3af33 100644 --- a/camp_fin/templates/base.html +++ b/camp_fin/templates/base.html @@ -61,9 +61,6 @@
  • Search
  • -
  • - Races -
  • Donations
  • diff --git a/camp_fin/templates/camp_fin/candidate-detail.html b/camp_fin/templates/camp_fin/candidate-detail.html index 4388d6c..517adfd 100644 --- a/camp_fin/templates/camp_fin/candidate-detail.html +++ b/camp_fin/templates/camp_fin/candidate-detail.html @@ -55,113 +55,6 @@

    Donations and expenditures over timeLatest race

    -

    - {% if latest_race.funding_period == '2017' %} - - {{ latest_race }} » - - {% else %} - {{ latest_race }} - {% endif %} -

    -
    -
    - - - - - - - - - - -
    CandidateCash on handFunds raised
    - -

    - {{ candidate.full_name }} - - {% if latest_campaign.party_identifier %} - - - ({{ latest_campaign.party_identifier }}) - - - {% endif %} - {% if campaign.is_winner %} - - {% endif %} -

    - - {% for campaign in latest_race.sorted_campaigns %} - {% if campaign.candidate != candidate %} -

    - - {{ campaign.candidate.full_name }} - - {% if campaign.party_identifier %} - - - ({{ campaign.party_identifier }}) - - - {% endif %} - {% if campaign.is_winner %} - - {% endif %} -

    - {% endif %} - {% endfor %} -
    - -

    - {{ latest_campaign.cash_on_hand | format_money_short }} -

    - - {% for campaign in latest_race.sorted_campaigns %} - {% if campaign.candidate != candidate %} -

    - {{ campaign.cash_on_hand | format_money_short }} -

    - {% endif %} - {% endfor %} -
    - - - -
    - -

    - {% funds_raised latest_campaign latest_race.funding_period short=True %} -

    - - {% for campaign in latest_race.sorted_campaigns %} -

    - {% if campaign.candidate != candidate %} - {% funds_raised campaign latest_race.funding_period short=True %} - {% endif %} -

    - {% endfor %} -
    -
    -
    -
    - {% endif %} {% if campaigns %}

    Past campaigns

    diff --git a/camp_fin/templates/index.html b/camp_fin/templates/index.html index afdc80f..2bda306 100644 --- a/camp_fin/templates/index.html +++ b/camp_fin/templates/index.html @@ -59,82 +59,6 @@

    Keep an eye on money in New Mexico politics

    {{ page.text|safe }} -
    -
    -

    - - New Mexico Lobbyists -
    - - Browse lobbyists and their employers in New Mexico - -

    -
    -
    -
    -
    -

    - - - {{ total_lobbyist_contributions|format_money_short }} - - raised for candidates and committees since 2013 -

    -

    - - - {{ total_lobbyist_expenditures|format_money_short }} - - spent on lobbying since 2013 -

    -
    -
    -
    -{% if page.text %} -
    -
    - {{ page.text|safe }} -
    -
    -{% endif %} -
    -
    -

    - - Browse {{ num_lobbyists|intcomma }} - lobbyists -

    - {% with sortable=False %} - {% include 'camp_fin/widgets/lobbyist-list.html' %} - {% endwith %} -

    - - - See more top lobbyists > - -

    -
    -
    -
    -
    -
    -

    - - Browse {{ num_employers|intcomma }} - employers - paying lobbyists -

    - {% include 'camp_fin/widgets/organization-list.html' %} -

    - - - See more top lobbyist employers > - -

    -

    -
    -
    -
    @@ -198,8 +122,10 @@

    Top Committees

    Browse committees >



    -

    About

    - {{ home_page_about|safe }} + {% if home_page_about %} +

    About

    + {{ home_page_about|safe }} + {% endif %}
    {% endblock %} diff --git a/camp_fin/tests/test_integration.py b/camp_fin/tests/test_integration.py index 352d23b..a49bcb5 100644 --- a/camp_fin/tests/test_integration.py +++ b/camp_fin/tests/test_integration.py @@ -61,32 +61,3 @@ def test_campaign_share_of_funds(self): self.assertEqual(self.first_campaign.share_of_funds(total=total), 70) self.assertEqual(self.second_campaign.share_of_funds(total=total), 30) self.assertEqual(self.third_campaign.share_of_funds(total=total), 0) - - -class TestRaceView(DatabaseTestCase): - ''' - Test views of the Race class that require database access. - ''' - def test_race_view_html(self): - year = str(self.filing_period.due_date.year) - response = self.client.get(reverse('races') + '?year=%s' % year - + '&type=%d' % self.office_type.id) - - html = response.content.decode('utf-8') - - self.assertIn('Contested %s races in New Mexico' % year, html) - self.assertTemplateUsed(response, 'camp_fin/races.html') - - # Check that a table is loaded - table_list = html.split('<tr') - self.assertTrue(len(table_list) > 2) - - def test_race_detail_view_html(self): - detail_url = reverse('race-detail', args=[self.race.id]) - response = self.client.get(detail_url) - self.assertEqual(response.status_code, 200) - - html = response.content.decode('utf-8') - - self.assertIn('<title>{year} Race for test office'.format(year=self.year), html) - self.assertTemplateUsed(response, 'camp_fin/race-detail.html') diff --git a/camp_fin/tests/test_unit.py b/camp_fin/tests/test_unit.py index 506f257..ff5c76a 100644 --- a/camp_fin/tests/test_unit.py +++ b/camp_fin/tests/test_unit.py @@ -112,38 +112,6 @@ def test_campaign_party_identifier(self): self.assertEqual(self.non_race_campaign.party_identifier, 'I') -class TestRaceView(StatelessTestCase): - ''' - Test view to display contested races. - ''' - @classmethod - def setUpTestData(cls): - super().setUpTestData() - - # We don't actually need data here; we just need the table - call_command('import_data', '--add-aggregates', '--verbosity=0') - - def test_race_view_resolves(self): - found = resolve(reverse('races')) - self.assertEqual(found.func.view_class, RacesView) - - def test_race_detail_view_resolves(self): - found = resolve(reverse('race-detail', args=[self.race.id])) - self.assertEqual(found.func.view_class, RaceDetail) - - def test_race_detail_view_404(self): - pk = 0 - while pk == self.race.id: - pk += 1 - if pk == 100: - self.fail() # Something's gone very wrong - - bogus_url = reverse('race-detail', args=[pk]) - response = self.client.get(bogus_url) - - self.assertEqual(response.status_code, 404) - - class TestAdmin(StatelessTestCase): ''' Test some functionality of the Admin console. diff --git a/camp_fin/views.py b/camp_fin/views.py index 4fd8b8b..27d55c5 100644 --- a/camp_fin/views.py +++ b/camp_fin/views.py @@ -1160,9 +1160,6 @@ def get_context_data(self, **kwargs): context['latest_campaign'] = latest_campaign - if latest_campaign: - context['latest_race'] = latest_campaign.active_race - context['campaigns'] = context['object'].campaign_set.all() context['stories'] = self.object.story_set.all() diff --git a/data/Cam_BundlingDisclosureLobbyist.xlsx b/data/Cam_BundlingDisclosureLobbyist.xlsx deleted file mode 100644 index 94bf3eb..0000000 Binary files a/data/Cam_BundlingDisclosureLobbyist.xlsx and /dev/null differ diff --git a/data/Cam_BundlingDisclosureLobbyistContributor.xlsx b/data/Cam_BundlingDisclosureLobbyistContributor.xlsx deleted file mode 100644 index 3c7e9d9..0000000 Binary files a/data/Cam_BundlingDisclosureLobbyistContributor.xlsx and /dev/null differ diff --git a/data/Cam_Campaign.xlsx b/data/Cam_Campaign.xlsx deleted file mode 100644 index d76cbf5..0000000 Binary files a/data/Cam_Campaign.xlsx and /dev/null differ diff --git a/data/Cam_Candidate.xlsx b/data/Cam_Candidate.xlsx deleted file mode 100644 index 7c43fe8..0000000 Binary files a/data/Cam_Candidate.xlsx and /dev/null differ diff --git a/data/Cam_ContribExpenditure.zip b/data/Cam_ContribExpenditure.zip index 104616f..7dc5a89 100644 Binary files a/data/Cam_ContribExpenditure.zip and b/data/Cam_ContribExpenditure.zip differ diff --git a/data/Cam_ContribExpenditureLobbyist.xlsx b/data/Cam_ContribExpenditureLobbyist.xlsx deleted file mode 100644 index 26674f4..0000000 Binary files a/data/Cam_ContribExpenditureLobbyist.xlsx and /dev/null differ diff --git a/data/Cam_ContribExpenditureLobbyistType.xlsx b/data/Cam_ContribExpenditureLobbyistType.xlsx deleted file mode 100644 index 8f78b06..0000000 Binary files a/data/Cam_ContribExpenditureLobbyistType.xlsx and /dev/null differ diff --git a/data/Cam_FilingPeriod.csv b/data/Cam_FilingPeriod.csv old mode 100644 new mode 100755 index 32eb5cb..cfe7b6f --- a/data/Cam_FilingPeriod.csv +++ b/data/Cam_FilingPeriod.csv @@ -1,120 +1,125 @@ -FilingPeriodId,FilingDate,DueDate,OLDDBReportingPeriodId,Description,AllowStatementOfNoActivity,FilingPeriodTypeId,ExcludeFromCascading,SupplementalInitDate,RegularFilingPeriodId,InitialDate,FilingPeriodEmailingSendStatusId,FilingPeriodReminderSendStatusId,DateReminderSent -20,2004-05-27 00:00:00,2004-05-27 00:00:00,,Second Primary Report,1,1,0,,,2004-05-11 00:00:00,1,1, -21,2004-07-01 00:00:00,2004-07-01 00:00:00,,Third Primary Report,1,1,0,,,2004-06-02 00:00:00,1,1, -22,2004-10-12 00:00:00,2004-10-12 00:00:00,,First General Report,1,1,0,,,2004-07-02 00:00:00,1,1, -23,2004-10-28 00:00:00,2004-10-28 00:00:00,,Second General Report,1,1,0,,,2004-10-13 00:00:00,1,1, -24,2004-12-02 16:59:59.999997,2004-12-02 16:59:59.999997,17,Third General,1,1,0,,,2004-11-03 00:00:00,1,1, -25,2005-05-09 16:59:59.999997,2005-05-09 16:59:59.999997,18,,1,1,0,,,2004-12-03 00:00:00,1,1, -26,2004-01-01 16:59:59.999997,2004-01-01 16:59:59.999997,19,1/1/2004 Opening,1,1,0,,,2004-04-01 00:00:00,1,1, -27,2004-06-01 00:00:00,2004-06-01 00:00:00,,Primary Supplemental Report,1,1,1,,,2004-05-28 00:00:00,1,1, -28,2004-11-02 00:00:00,2004-11-02 00:00:00,,General Supplemental Report,1,1,1,,,2004-10-29 00:00:00,1,1, -29,2006-05-08 16:59:59.999997,2006-05-08 16:59:59.999997,26,First Primary,1,1,0,,,2005-05-10 00:00:00,1,1, -30,2006-06-01 16:59:59.999997,2006-06-01 16:59:59.999997,27,Second Primary,1,1,0,,,2006-05-27 00:00:00,1,1, -31,2006-07-06 16:59:59.999997,2006-07-06 16:59:59.999997,28,Third Primary,1,1,0,,,2006-06-07 00:00:00,1,1, -32,2006-10-10 16:59:59.999997,2006-10-10 16:59:59.999997,29,First General,1,1,0,,,2006-07-07 00:00:00,1,1, -33,2006-11-02 16:59:59.999997,2006-11-02 16:59:59.999997,30,Second General,1,1,0,,,2006-10-11 00:00:00,1,1, -34,2006-12-07 16:59:59.999997,2006-12-07 16:59:59.999997,31,Third General,1,1,0,,,2006-11-08 00:00:00,1,1, -35,2006-06-06 16:59:59.999997,2006-06-06 16:59:59.999997,37,Primary Supplemental,1,1,1,,,2006-06-02 00:00:00,1,1, -36,2006-11-07 16:59:59.999997,2006-11-07 16:59:59.999997,39,General Supplemental,1,1,1,,,2006-11-03 00:00:00,1,1, -37,2007-05-14 16:59:59.999997,2007-05-14 16:59:59.999997,41,,1,1,0,,,2006-12-08 00:00:00,1,1, -38,2006-05-26 16:59:59.999997,2006-05-26 16:59:59.999997,43,PRC Non Participating Report,1,1,1,,,2006-05-09 00:00:00,1,1, -39,2006-10-10 16:59:59.999997,2006-10-10 16:59:59.999997,57,General Statement Of Exception,1,1,1,,,2006-07-07 00:00:00,1,1, -40,2008-05-12 16:59:59.999997,2008-05-12 16:59:59.999997,60,2008 Annual,1,1,0,,,2008-05-13 00:00:00,1,1, -41,2009-05-11 16:59:59.999997,2009-05-11 16:59:59.999997,61,2009 Annual,1,1,0,,,2008-12-05 00:00:00,1,1, -42,2008-05-12 16:59:59.999997,2008-05-12 16:59:59.999997,62,Primary Statement Of Exception,1,1,1,,,2008-05-13 00:00:00,1,1, -43,2008-05-12 00:00:00,2008-05-12 00:00:00,,First Primary,1,1,0,,,2007-05-15 00:00:00,1,1, -44,2008-05-29 16:59:59.999997,2008-05-29 16:59:59.999997,64,Second Primary,1,1,0,,,2008-05-24 00:00:00,1,1, -45,2008-06-03 16:59:59.999997,2008-06-03 16:59:59.999997,65,Primary Supplemental,1,1,1,,,2008-05-30 00:00:00,1,1, -46,2008-07-03 16:59:59.999997,2008-07-03 16:59:59.999997,66,Third Primary,1,1,0,,,2008-06-04 00:00:00,1,1, -47,2008-10-13 16:59:59.999997,2008-10-13 16:59:59.999997,,General Statement Of Exception,1,1,0,,,2008-10-08 00:00:00,1,1, -48,2008-10-13 16:59:59.999997,2008-10-13 16:59:59.999997,68,First General,1,1,0,,,2008-10-08 00:00:00,1,1, -49,2008-10-30 16:59:59.999997,2008-10-30 16:59:59.999997,69,Second General,1,1,0,,,2008-10-25 00:00:00,1,1, -50,2008-11-04 16:59:59.999997,2008-11-04 16:59:59.999997,70,General Supplemental,1,1,1,,,2008-10-31 00:00:00,1,1, -51,2008-12-04 16:59:59.999997,2008-12-04 16:59:59.999997,71,Third General,1,1,0,,,2008-11-05 00:00:00,1,1, -52,2009-05-11 16:59:59.999997,2009-05-11 16:59:59.999997,72,2009 Annual,1,1,0,,,2008-12-05 00:00:00,1,1, -53,2008-05-23 16:59:59.999997,2008-05-23 16:59:59.999997,73,Primary Supplemental PRC/JUDGES,1,1,1,,,2008-05-13 00:00:00,1,1, -54,2008-10-07 16:59:59.999997,2008-10-07 16:59:59.999997,74,General 1 Supplemental PRC/JUDGES,1,1,1,,,2008-07-04 00:00:00,1,1, -55,2008-10-24 16:59:59.999997,2008-10-24 16:59:59.999997,75,General 2 Supplemental PRC/JUDGES,1,1,1,,,2008-10-14 00:00:00,1,1, -56,2006-05-08 16:59:59.999997,2006-05-08 16:59:59.999997,79,2006 Annual,1,1,0,,,2005-05-10 00:00:00,1,1, -57,2007-05-14 16:59:59.999997,2007-05-14 16:59:59.999997,80,2007 Annual,1,1,0,,,2006-12-08 00:00:00,1,1, -58,2008-05-12 16:59:59.999997,2008-05-12 16:59:59.999997,81,2008 Annual,1,1,0,,,2008-05-13 00:00:00,1,1, -59,2009-05-11 16:59:59.999997,2009-05-11 16:59:59.999997,82,2009 Annual,1,1,0,,,2008-12-05 00:00:00,1,1, -60,2009-10-12 00:00:00,2009-10-04 00:00:00,,2009 Second Bi-Annual,1,1,0,,,2009-05-12 00:00:00,1,1, -62,2009-10-12 00:00:00,2009-10-04 00:00:00,,2009 Second Bi-Annual,1,1,0,,,2009-05-12 00:00:00,1,1, -63,2010-04-12 00:00:00,2010-04-05 00:00:00,,First Primary Report 2010,1,1,0,,,2009-10-05 00:00:00,1,1, -64,2010-05-10 23:59:58.999998,2010-05-03 00:00:00,,Second Primary Report 2010,1,1,0,,,2010-04-06 00:00:00,1,1, -65,2010-05-27 23:59:00.000004,2010-05-25 23:59:00.000004,,Third Primary Report 2010,1,1,0,,,2010-05-04 00:00:00,1,1, -67,2010-07-01 16:59:59.999997,2010-06-25 23:59:00.000004,,Fourth Primary Report 2010,1,1,0,,,2010-05-26 00:00:00,1,1, -68,2010-05-31 12:00:00,2010-05-31 12:00:00,,Primary Supplemental Report 2010,0,2,1,2010-05-25 16:59:59.999997,67,2010-05-25 00:00:00,1,1, -69,2010-09-13 16:59:59.999997,2010-09-06 16:59:59.999997,,First General Report 2010,0,1,0,,,2010-06-26 00:00:00,1,1, -70,2010-10-12 16:59:59.999997,2010-10-04 23:59:00.000004,,Second General Report 2010,1,1,0,,,2010-09-07 00:00:00,1,1, -71,2010-10-28 16:59:59.999997,2010-10-26 16:59:59.999997,,Third General Report 2010,1,1,0,,,2010-10-05 00:00:00,1,1, -72,2010-12-02 16:59:59.999997,2010-11-27 16:59:59.999997,,Fourth General Report 2010 ,1,1,0,,,2010-10-27 00:00:00,1,1, -73,2010-11-01 12:00:00,2010-11-01 12:00:00,,General Supplemental Report 2010,0,2,1,2010-10-26 16:59:59.999997,72,2010-10-26 00:00:00,1,1, -75,2010-04-12 16:59:59.999997,2010-04-05 16:59:59.999997,,2010 First biannual,0,3,0,,,2009-10-05 00:00:00,1,1, -76,2010-10-12 16:59:59.999997,2010-10-04 23:59:00.000004,,2010 Second Biannual,0,3,0,,,2010-04-06 00:00:00,1,1, -77,2011-04-11 16:59:59.999997,2011-04-04 16:59:59.999997,,2011 First Bi-Annual ,1,3,0,,,2010-10-05 00:00:00,1,1, -78,2011-10-11 16:59:59.999997,2011-10-03 16:59:59.999997,,2011 Second Bi-Annual,1,3,0,,,2011-04-05 00:00:00,1,1, -79,2012-04-09 16:59:59.999997,2012-04-02 23:59:00.000004,,2012 First Biannual,1,3,0,,,2011-10-04 00:00:00,1,1, -80,2012-04-09 16:59:59.999997,2012-04-02 23:59:00.000004,,First Primary Report 2012 ,1,1,0,,,2011-10-04 00:00:00,1,1, -81,2012-05-14 16:59:59.999997,2012-05-07 12:00:00,,Second Primary Report 2012,1,1,0,,,2012-04-03 00:00:00,1,1, -82,2012-05-31 16:59:59.999997,2012-05-31 23:59:00.000004,,Third Primary Report 2012,1,1,0,,,2012-05-08 00:00:00,1,1, -83,2012-10-08 16:59:59.999997,2012-10-01 16:59:59.999997,,2012 Second Biannual,1,3,0,,,2012-04-03 00:00:00,1,1, -84,2012-05-26 12:00:00,2012-05-24 12:00:00,,2012 Voter Action Act Primary Supplemental ,1,1,0,,,2012-05-08 00:00:00,1,1, -85,2012-06-04 12:00:00,2012-06-04 12:00:00,,2012 Primary Supp. (Legis/Judical Candidates Only),0,2,1,2012-06-01 00:00:00,86,2012-06-01 00:00:00,1,1, -86,2012-07-05 16:59:59.999997,2012-06-30 00:00:00,,Fourth Primary Report 2012,1,1,0,,,2012-05-30 00:00:00,1,1, -87,2012-09-10 16:59:59.999997,2012-09-03 00:00:00,,First General Report 2012,1,1,0,,,2012-07-01 00:00:00,1,1, -88,2012-10-08 16:59:59.999997,2012-10-01 12:00:00,,Second General Report 2012,1,1,0,,,2012-09-04 00:00:00,1,1, -89,2012-11-01 16:59:59.999997,2012-11-01 16:59:59.999997,,Third General Report 2012,1,1,0,,,2012-10-02 00:00:00,1,1, -90,2013-04-08 16:59:59.999997,2013-04-01 23:59:00.000004,,2013 First Biannual,1,3,0,,,2012-10-02 00:00:00,1,1, -91,2012-12-06 16:59:59.999997,2012-12-01 23:59:00.000004,,Fourth General Report 2012,1,1,0,,,2012-10-31 00:00:00,1,1, -92,2012-11-05 12:00:00,2012-11-05 12:00:00,,2012 General Supp. (Legis/Judical Candidates Only),0,2,1,2012-11-01 17:01:00.000002,91,2012-11-01 17:01:00.000002,1,1, -93,2013-10-14 16:59:59.999997,2013-10-07 23:59:00.000004,,2013 Second Biannual,1,3,0,,,2013-04-02 00:00:00,1,1, -94,2014-04-14 16:59:59.999997,2014-04-07 23:59:00.000004,,2014 First Biannual ,1,3,0,,,2013-10-08 00:00:00,1,1, -95,2014-04-14 16:59:59.999997,2014-04-07 23:59:00.000004,,2014 First Primary,1,1,0,,,2013-10-08 00:00:00,1,1, -96,2014-05-12 16:59:59.999997,2014-05-05 23:59:00.000004,,2014 Second Primary,1,1,0,,,2014-04-08 00:00:00,1,1, -97,2014-10-13 16:59:59.999997,2014-10-06 23:59:00.000004,,2014 Second Biannual,1,3,0,,,2014-04-08 00:00:00,1,1, -98,2014-05-29 16:59:59.999997,2014-05-27 23:59:00.000004,,2014 Third Primary,1,1,0,,,2014-05-06 00:00:00,1,1, -99,2014-06-02 12:00:00,2014-06-02 12:00:00,,2014 Primary Supplemental,0,2,1,2014-05-27 17:01:00.000002,100,2014-05-27 17:01:00.000002,1,1, -100,2014-07-03 16:59:59.999997,2014-06-28 23:59:00.000004,,2014 Fourth Primary,1,1,0,,,2014-05-28 00:00:00,1,1, -101,2014-09-08 16:59:59.999997,2014-09-01 23:59:00.000004,,2014 First General ,1,1,0,,,2014-06-29 00:00:00,1,1, -102,2014-10-13 16:59:59.999997,2014-10-06 23:59:00.000004,,2014 Second General ,1,1,0,,,2014-09-02 00:00:00,1,1, -103,2014-10-30 16:59:59.999997,2014-10-30 16:59:59.999997,,2014 Third General,1,1,0,,,2014-10-07 00:00:00,1,1, -104,2014-12-04 16:59:59.999997,2014-11-29 23:59:00.000004,,2014 Fourth General,1,1,0,,,2014-10-29 00:00:00,1,1, -105,2014-11-03 12:00:00,2014-11-03 12:00:00,,2014 General Supplemental,0,2,0,2014-10-28 17:01:00.000002,104,2014-10-28 17:01:00.000002,1,1, -106,2015-04-13 16:59:59.999997,2015-04-06 23:59:00.000004,,2015 First Biannual,1,3,0,,,2014-10-07 00:00:00,1,1, -107,2015-04-13 23:59:00.000004,2015-03-03 23:59:00.000004,,2015 School District Report ,1,4,0,,,2013-03-01 00:00:00,1,1, -108,2015-10-13 23:59:00.000004,2015-10-05 23:59:00.000004,,2015 Second Biannual,1,3,0,,,2015-04-07 00:00:00,1,1, -109,2016-04-11 23:59:00.000004,2016-04-04 23:59:00.000004,,2016 First Biannual ,1,3,0,,,2015-10-06 00:00:00,1,1, -110,2016-04-11 23:59:00.000004,2016-04-04 23:59:00.000004,,2016 First Primary,1,1,0,,,2015-10-06 00:00:00,1,1, -111,2016-04-11 00:00:00,2016-04-11 23:59:00.000004,,2016 School District Report,1,4,0,,,2015-03-04 00:00:00,1,1, -112,2016-05-09 23:59:00.000004,2016-05-02 23:59:00.000004,,2016 Second Primary,1,1,0,,,2016-04-05 00:00:00,1,1, -113,2016-10-11 23:59:00.000004,2016-10-03 23:59:00.000004,,2016 Second Biannual ,1,3,0,,,2016-04-05 00:00:00,1,1, -114,2016-06-02 23:59:00.000004,2016-06-02 23:59:00.000004,,2016 Third Primary,1,1,0,,,2016-05-03 00:00:00,1,1, -115,2016-07-07 23:59:00.000004,2016-07-02 12:58:59.999998,,2016 Fourth Primary,1,1,0,,,2016-06-01 00:00:00,1,1, -116,2016-06-06 12:00:00,2016-06-06 12:00:00,,2016 Primary Supplemental,0,2,0,2016-05-31 00:00:00,115,2016-05-31 00:00:00,1,1, -117,2016-09-12 23:59:00.000004,2016-09-05 00:00:00,,2016 First General ,1,1,0,,,2016-07-03 00:00:00,1,1, -118,2016-10-11 23:59:00.000004,2016-10-03 23:59:00.000004,,2016 Second General,1,1,0,,,2016-09-06 00:00:00,1,1, -119,2016-11-03 23:59:00.000004,2016-11-03 23:59:00.000004,,2016 Third General,1,1,0,,,2016-10-04 00:00:00,1,1, -120,2016-11-07 12:00:00,2016-11-07 12:00:00,,2016 General Supplemental ,0,2,0,2016-11-01 00:00:00,121,2016-11-01 00:00:00,1,1, -121,2016-12-08 23:59:00.000004,2016-12-03 23:59:00.000004,,2016 Fourth General ,1,1,0,,,2016-11-02 00:00:00,1,1, -122,2017-04-10 23:59:00.000004,2017-02-07 23:59:00.000004,,2017 School District Report,1,4,0,,,2015-03-05 00:00:00,1,1, -123,2017-04-10 23:59:00.000004,2017-04-03 23:59:00.000004,,2017 First Biannual,1,3,0,,,2016-10-04 00:00:00,1,1, -124,2017-10-09 23:59:00.000004,2017-10-02 23:59:00.000004,,2017 Second Biannual,1,3,0,,,2017-04-04 00:00:00,1,1, -125,2018-04-09 23:59:00.000004,2018-04-02 23:59:00.000004,,2018 First Primary Report,1,1,0,,,2017-10-03 23:59:00.000004,1,1, -126,2018-04-09 23:59:00.000004,2018-04-02 23:59:00.000004,,2018 First Biannual,1,3,0,,,2017-10-03 23:59:00.000004,1,, -127,2018-04-09 23:59:00.000004,2018-04-09 23:59:00.000004,,2018 School District Report,1,4,0,,,2017-02-08 00:00:00,1,1, -128,2018-05-14 23:59:00.000004,2018-05-07 23:59:00.000004,,2018 Second Primary,1,1,0,,,2018-04-03 00:00:00,1,1, -129,2018-10-08 23:59:00.000004,2018-10-01 23:59:00.000004,,2018 Second Biannual,1,3,0,,,2018-04-03 00:00:00,1,1, -130,2018-05-31 23:59:00.000004,2018-05-31 23:59:00.000004,,2018 Third Primary,1,1,0,,,2018-05-08 00:00:00,1,1, -131,2018-07-05 23:59:00.000004,2018-06-30 12:58:59.999998,,2018 Fourth Primary,1,1,0,,,2018-05-30 00:00:00,1,1, -132,2018-06-04 12:00:00,2018-06-04 12:00:00,,2018 Primary Supplemental,0,2,0,2018-06-01 00:00:00,131,2018-06-01 00:00:00,1,1, -133,2018-09-10 23:59:00.000004,2018-09-03 00:00:00,,2018 First General,1,1,0,,,2018-07-01 00:00:00,1,1, -134,2018-10-08 23:59:00.000004,2018-10-01 23:59:00.000004,,2018 Second General,1,1,0,,,2018-09-04 00:00:00,1,1, -135,2018-11-01 23:59:00.000004,2018-11-01 23:59:00.000004,,2018 Third General,1,1,0,,,2018-10-02 00:00:00,1,1, -136,2018-12-06 23:59:00.000004,2018-12-01 12:58:59.999998,,2018 Fourth General,1,1,0,,,2018-10-31 00:00:00,1,1, -137,2018-11-05 12:00:00,2018-11-05 12:00:00,,2018 General Supplemental,0,2,0,2018-11-02 23:59:00.000004,136,2018-11-02 23:59:00.000004,1,1, -138,2019-04-08 23:59:00.000004,2019-04-01 23:59:00.000004,,2019 First Biannual,1,3,0,,,2018-10-02 00:00:00,1,1, -139,2019-04-08 23:59:00.000004,2019-04-08 23:59:00.000004,,2019 School District Report,1,4,0,,,2018-02-06 00:00:00,1,1, -140,2019-10-15 23:59:00.000004,2019-10-07 23:59:00.000004,,2019 Second Biannual,1,3,0,,,2019-04-02 00:00:00,1,1, -141,2019-10-15 23:59:00.000004,2019-10-15 23:59:00.000004,,2019 RLE First School District Report,1,4,0,,,2019-04-08 00:00:00,1,1, +"FilingPeriodId","FilingDate","DueDate","OLDDBReportingPeriodId","Description","AllowStatementOfNoActivity","FilingPeriodTypeId","ExcludeFromCascading","SupplementalInitDate","RegularFilingPeriodId","InitialDate","FilingPeriodEmailingSendStatusId","FilingPeriodReminderSendStatusId","DateReminderSent" +19,5/10/2004 0:00:00,5/10/2004 0:00:00,,"First Primary Report ",1,1,0,,,1/2/2004 0:00:00,1,1, +20,5/27/2004 0:00:00,5/27/2004 0:00:00,,"Second Primary Report",1,1,0,,,5/11/2004 0:00:00,1,1, +21,7/1/2004 0:00:00,7/1/2004 0:00:00,,"Third Primary Report",1,1,0,,,6/2/2004 0:00:00,1,1, +22,10/12/2004 0:00:00,10/12/2004 0:00:00,,"First General Report",1,1,0,,,7/2/2004 0:00:00,1,1, +23,10/28/2004 0:00:00,10/28/2004 0:00:00,,"Second General Report",1,1,0,,,10/13/2004 0:00:00,1,1, +24,12/2/2004 17:00:00,12/2/2004 17:00:00,17,"Third General",1,1,0,,,11/3/2004 0:00:00,1,1, +25,5/9/2005 17:00:00,5/9/2005 17:00:00,18,"",1,1,0,,,12/3/2004 0:00:00,1,1, +26,1/1/2004 17:00:00,1/1/2004 17:00:00,19,"1/1/2004 Opening",1,1,0,,,4/1/2004 0:00:00,1,1, +27,6/1/2004 0:00:00,6/1/2004 0:00:00,,"Primary Supplemental Report",1,1,1,,,5/28/2004 0:00:00,1,1, +28,11/2/2004 0:00:00,11/2/2004 0:00:00,,"General Supplemental Report",1,1,1,,,10/29/2004 0:00:00,1,1, +29,5/8/2006 17:00:00,5/8/2006 17:00:00,26,"First Primary",1,1,0,,,5/10/2005 0:00:00,1,1, +30,6/1/2006 17:00:00,6/1/2006 17:00:00,27,"Second Primary",1,1,0,,,5/27/2006 0:00:00,1,1, +31,7/6/2006 17:00:00,7/6/2006 17:00:00,28,"Third Primary",1,1,0,,,6/7/2006 0:00:00,1,1, +32,10/10/2006 17:00:00,10/10/2006 17:00:00,29,"First General",1,1,0,,,7/7/2006 0:00:00,1,1, +33,11/2/2006 17:00:00,11/2/2006 17:00:00,30,"Second General",1,1,0,,,10/11/2006 0:00:00,1,1, +34,12/7/2006 17:00:00,12/7/2006 17:00:00,31,"Third General",1,1,0,,,11/8/2006 0:00:00,1,1, +35,6/6/2006 17:00:00,6/6/2006 17:00:00,37,"Primary Supplemental",1,1,1,,,6/2/2006 0:00:00,1,1, +36,11/7/2006 17:00:00,11/7/2006 17:00:00,39,"General Supplemental",1,1,1,,,11/3/2006 0:00:00,1,1, +37,5/14/2007 17:00:00,5/14/2007 17:00:00,41,"",1,1,0,,,12/8/2006 0:00:00,1,1, +38,5/26/2006 17:00:00,5/26/2006 17:00:00,43,"PRC Non Participating Report",1,1,1,,,5/9/2006 0:00:00,1,1, +39,10/10/2006 17:00:00,10/10/2006 17:00:00,57,"General Statement Of Exception",1,1,1,,,7/7/2006 0:00:00,1,1, +40,5/12/2008 17:00:00,5/12/2008 17:00:00,60,"2008 Annual",1,1,0,,,5/13/2008 0:00:00,1,1, +41,5/11/2009 17:00:00,5/11/2009 17:00:00,61,"2009 Annual",1,1,0,,,12/5/2008 0:00:00,1,1, +42,5/12/2008 17:00:00,5/12/2008 17:00:00,62,"Primary Statement Of Exception",1,1,1,,,5/13/2008 0:00:00,1,1, +43,5/12/2008 0:00:00,5/12/2008 0:00:00,,"First Primary",1,1,0,,,5/15/2007 0:00:00,1,1, +44,5/29/2008 17:00:00,5/29/2008 17:00:00,64,"Second Primary",1,1,0,,,5/24/2008 0:00:00,1,1, +45,6/3/2008 17:00:00,6/3/2008 17:00:00,65,"Primary Supplemental",1,1,1,,,5/30/2008 0:00:00,1,1, +46,7/3/2008 17:00:00,7/3/2008 17:00:00,66,"Third Primary",1,1,0,,,6/4/2008 0:00:00,1,1, +47,10/13/2008 17:00:00,10/13/2008 17:00:00,,"General Statement Of Exception",1,1,0,,,10/8/2008 0:00:00,1,1, +48,10/13/2008 17:00:00,10/13/2008 17:00:00,68,"First General",1,1,0,,,10/8/2008 0:00:00,1,1, +49,10/30/2008 17:00:00,10/30/2008 17:00:00,69,"Second General",1,1,0,,,10/25/2008 0:00:00,1,1, +50,11/4/2008 17:00:00,11/4/2008 17:00:00,70,"General Supplemental",1,1,1,,,10/31/2008 0:00:00,1,1, +51,12/4/2008 17:00:00,12/4/2008 17:00:00,71,"Third General",1,1,0,,,11/5/2008 0:00:00,1,1, +52,5/11/2009 17:00:00,5/11/2009 17:00:00,72,"2009 Annual",1,1,0,,,12/5/2008 0:00:00,1,1, +53,5/23/2008 17:00:00,5/23/2008 17:00:00,73,"Primary Supplemental PRC/JUDGES",1,1,1,,,5/13/2008 0:00:00,1,1, +54,10/7/2008 17:00:00,10/7/2008 17:00:00,74,"General 1 Supplemental PRC/JUDGES",1,1,1,,,7/4/2008 0:00:00,1,1, +55,10/24/2008 17:00:00,10/24/2008 17:00:00,75,"General 2 Supplemental PRC/JUDGES",1,1,1,,,10/14/2008 0:00:00,1,1, +56,5/8/2006 17:00:00,5/8/2006 17:00:00,79,"2006 Annual",1,1,0,,,5/10/2005 0:00:00,1,1, +57,5/14/2007 17:00:00,5/14/2007 17:00:00,80,"2007 Annual",1,1,0,,,12/8/2006 0:00:00,1,1, +58,5/12/2008 17:00:00,5/12/2008 17:00:00,81,"2008 Annual",1,1,0,,,5/13/2008 0:00:00,1,1, +59,5/11/2009 17:00:00,5/11/2009 17:00:00,82,"2009 Annual",1,1,0,,,12/5/2008 0:00:00,1,1, +60,10/12/2009 0:00:00,10/4/2009 0:00:00,,"2009 Second Bi-Annual",1,1,0,,,5/12/2009 0:00:00,1,1, +62,10/12/2009 0:00:00,10/4/2009 0:00:00,,"2009 Second Bi-Annual",1,1,0,,,5/12/2009 0:00:00,1,1, +63,4/12/2010 0:00:00,4/5/2010 0:00:00,,"First Primary Report 2010",1,1,0,,,10/5/2009 0:00:00,1,1, +64,5/10/2010 23:59:59,5/3/2010 0:00:00,,"Second Primary Report 2010",1,1,0,,,4/6/2010 0:00:00,1,1, +65,5/27/2010 23:59:00,5/25/2010 23:59:00,,"Third Primary Report 2010",1,1,0,,,5/4/2010 0:00:00,1,1, +67,7/1/2010 17:00:00,6/25/2010 23:59:00,,"Fourth Primary Report 2010",1,1,0,,,5/26/2010 0:00:00,1,1, +68,5/31/2010 12:00:00,5/31/2010 12:00:00,,"Primary Supplemental Report 2010",0,2,1,5/25/2010 17:00:00,67,5/25/2010 0:00:00,1,1, +69,9/13/2010 17:00:00,9/6/2010 17:00:00,,"First General Report 2010",0,1,0,,,6/26/2010 0:00:00,1,1, +70,10/12/2010 17:00:00,10/4/2010 23:59:00,,"Second General Report 2010",1,1,0,,,9/7/2010 0:00:00,1,1, +71,10/28/2010 17:00:00,10/26/2010 17:00:00,,"Third General Report 2010",1,1,0,,,10/5/2010 0:00:00,1,1, +72,12/2/2010 17:00:00,11/27/2010 17:00:00,,"Fourth General Report 2010 ",1,1,0,,,10/27/2010 0:00:00,1,1, +73,11/1/2010 12:00:00,11/1/2010 12:00:00,,"General Supplemental Report 2010",0,2,1,10/26/2010 17:00:00,72,10/26/2010 0:00:00,1,1, +75,4/12/2010 17:00:00,4/5/2010 17:00:00,,"2010 First biannual",0,3,0,,,10/5/2009 0:00:00,1,1, +76,10/12/2010 17:00:00,10/4/2010 23:59:00,,"2010 Second Biannual",0,3,0,,,4/6/2010 0:00:00,1,1, +77,4/11/2011 17:00:00,4/4/2011 17:00:00,,"2011 First Bi-Annual ",1,3,0,,,10/5/2010 0:00:00,1,1, +78,10/11/2011 17:00:00,10/3/2011 17:00:00,,"2011 Second Bi-Annual",1,3,0,,,4/5/2011 0:00:00,1,1, +79,4/9/2012 17:00:00,4/2/2012 23:59:00,,"2012 First Biannual",1,3,0,,,10/4/2011 0:00:00,1,1, +80,4/9/2012 17:00:00,4/2/2012 23:59:00,,"First Primary Report 2012 ",1,1,0,,,10/4/2011 0:00:00,1,1, +81,5/14/2012 17:00:00,5/7/2012 12:00:00,,"Second Primary Report 2012",1,1,0,,,4/3/2012 0:00:00,1,1, +82,5/31/2012 17:00:00,5/31/2012 23:59:00,,"Third Primary Report 2012",1,1,0,,,5/8/2012 0:00:00,1,1, +83,10/8/2012 17:00:00,10/1/2012 17:00:00,,"2012 Second Biannual",1,3,0,,,4/3/2012 0:00:00,1,1, +84,5/26/2012 12:00:00,5/24/2012 12:00:00,,"2012 Voter Action Act Primary Supplemental ",1,1,0,,,5/8/2012 0:00:00,1,1, +85,6/4/2012 12:00:00,6/4/2012 12:00:00,,"2012 Primary Supp. (Legis/Judical Candidates Only)",0,2,1,6/1/2012 0:00:00,86,6/1/2012 0:00:00,1,1, +86,7/5/2012 17:00:00,6/30/2012 0:00:00,,"Fourth Primary Report 2012",1,1,0,,,5/30/2012 0:00:00,1,1, +87,9/10/2012 17:00:00,9/3/2012 0:00:00,,"First General Report 2012",1,1,0,,,7/1/2012 0:00:00,1,1, +88,10/8/2012 17:00:00,10/1/2012 12:00:00,,"Second General Report 2012",1,1,0,,,9/4/2012 0:00:00,1,1, +89,11/1/2012 17:00:00,11/1/2012 17:00:00,,"Third General Report 2012",1,1,0,,,10/2/2012 0:00:00,1,1, +90,4/8/2013 17:00:00,4/1/2013 23:59:00,,"2013 First Biannual",1,3,0,,,10/2/2012 0:00:00,1,1, +91,12/6/2012 17:00:00,12/1/2012 23:59:00,,"Fourth General Report 2012",1,1,0,,,10/31/2012 0:00:00,1,1, +92,11/5/2012 12:00:00,11/5/2012 12:00:00,,"2012 General Supp. (Legis/Judical Candidates Only)",0,2,1,11/1/2012 17:01:00,91,11/1/2012 17:01:00,1,1, +93,10/14/2013 17:00:00,10/7/2013 23:59:00,,"2013 Second Biannual",1,3,0,,,4/2/2013 0:00:00,1,1, +94,4/14/2014 17:00:00,4/7/2014 23:59:00,,"2014 First Biannual ",1,3,0,,,10/8/2013 0:00:00,1,1, +95,4/14/2014 17:00:00,4/7/2014 23:59:00,,"2014 First Primary",1,1,0,,,10/8/2013 0:00:00,1,1, +96,5/12/2014 17:00:00,5/5/2014 23:59:00,,"2014 Second Primary",1,1,0,,,4/8/2014 0:00:00,1,1, +97,10/13/2014 17:00:00,10/6/2014 23:59:00,,"2014 Second Biannual",1,3,0,,,4/8/2014 0:00:00,1,1, +98,5/29/2014 17:00:00,5/27/2014 23:59:00,,"2014 Third Primary",1,1,0,,,5/6/2014 0:00:00,1,1, +99,6/2/2014 12:00:00,6/2/2014 12:00:00,,"2014 Primary Supplemental",0,2,1,5/27/2014 17:01:00,100,5/27/2014 17:01:00,1,1, +100,7/3/2014 17:00:00,6/28/2014 23:59:00,,"2014 Fourth Primary",1,1,0,,,5/28/2014 0:00:00,1,1, +101,9/8/2014 17:00:00,9/1/2014 23:59:00,,"2014 First General ",1,1,0,,,6/29/2014 0:00:00,1,1, +102,10/13/2014 17:00:00,10/6/2014 23:59:00,,"2014 Second General ",1,1,0,,,9/2/2014 0:00:00,1,1, +103,10/30/2014 17:00:00,10/30/2014 17:00:00,,"2014 Third General",1,1,0,,,10/7/2014 0:00:00,1,1, +104,12/4/2014 17:00:00,11/29/2014 23:59:00,,"2014 Fourth General",1,1,0,,,10/29/2014 0:00:00,1,1, +105,11/3/2014 12:00:00,11/3/2014 12:00:00,,"2014 General Supplemental",0,2,0,10/28/2014 17:01:00,104,10/28/2014 17:01:00,1,1, +106,4/13/2015 17:00:00,4/6/2015 23:59:00,,"2015 First Biannual",1,3,0,,,10/7/2014 0:00:00,1,1, +107,4/13/2015 23:59:00,3/3/2015 23:59:00,,"2015 School District Report ",1,4,0,,,3/1/2013 0:00:00,1,1, +108,10/13/2015 23:59:00,10/5/2015 23:59:00,,"2015 Second Biannual",1,3,0,,,4/7/2015 0:00:00,1,1, +109,4/11/2016 23:59:00,4/4/2016 23:59:00,,"2016 First Biannual ",1,3,0,,,10/6/2015 0:00:00,1,1, +110,4/11/2016 23:59:00,4/4/2016 23:59:00,,"2016 First Primary",1,1,0,,,10/6/2015 0:00:00,1,1, +111,4/11/2016 0:00:00,4/11/2016 23:59:00,,"2016 School District Report",1,4,0,,,3/4/2015 0:00:00,1,1, +112,5/9/2016 23:59:00,5/2/2016 23:59:00,,"2016 Second Primary",1,1,0,,,4/5/2016 0:00:00,1,1, +113,10/11/2016 23:59:00,10/3/2016 23:59:00,,"2016 Second Biannual ",1,3,0,,,4/5/2016 0:00:00,1,1, +114,6/2/2016 23:59:00,6/2/2016 23:59:00,,"2016 Third Primary",1,1,0,,,5/3/2016 0:00:00,1,1, +115,7/7/2016 23:59:00,7/2/2016 12:59:00,,"2016 Fourth Primary",1,1,0,,,6/1/2016 0:00:00,1,1, +116,6/6/2016 12:00:00,6/6/2016 12:00:00,,"2016 Primary Supplemental",0,2,0,5/31/2016 0:00:00,115,5/31/2016 0:00:00,1,1, +117,9/12/2016 23:59:00,9/5/2016 0:00:00,,"2016 First General ",1,1,0,,,7/3/2016 0:00:00,1,1, +118,10/11/2016 23:59:00,10/3/2016 23:59:00,,"2016 Second General",1,1,0,,,9/6/2016 0:00:00,1,1, +119,11/3/2016 23:59:00,11/3/2016 23:59:00,,"2016 Third General",1,1,0,,,10/4/2016 0:00:00,1,1, +120,11/7/2016 12:00:00,11/7/2016 12:00:00,,"2016 General Supplemental ",0,2,0,11/1/2016 0:00:00,121,11/1/2016 0:00:00,1,1, +121,12/8/2016 23:59:00,12/3/2016 23:59:00,,"2016 Fourth General ",1,1,0,,,11/2/2016 0:00:00,1,1, +122,4/10/2017 23:59:00,2/7/2017 23:59:00,,"2017 School District Report",1,4,0,,,3/5/2015 0:00:00,1,1, +123,4/10/2017 23:59:00,4/3/2017 23:59:00,,"2017 First Biannual",1,3,0,,,10/4/2016 0:00:00,1,1, +124,10/9/2017 23:59:00,10/2/2017 23:59:00,,"2017 Second Biannual",1,3,0,,,4/4/2017 0:00:00,1,1, +125,4/9/2018 23:59:00,4/2/2018 23:59:00,,"2018 First Primary Report",1,1,0,,,10/3/2017 23:59:00,1,1, +126,4/9/2018 23:59:00,4/2/2018 23:59:00,,"2018 First Biannual",1,3,0,,,10/3/2017 23:59:00,1,, +127,4/9/2018 23:59:00,4/9/2018 23:59:00,,"2018 School District Report",1,4,0,,,2/8/2017 0:00:00,1,1, +128,5/14/2018 23:59:00,5/7/2018 23:59:00,,"2018 Second Primary",1,1,0,,,4/3/2018 0:00:00,1,1, +129,10/8/2018 23:59:00,10/1/2018 23:59:00,,"2018 Second Biannual",1,3,0,,,4/3/2018 0:00:00,1,1, +130,5/31/2018 23:59:00,5/31/2018 23:59:00,,"2018 Third Primary",1,1,0,,,5/8/2018 0:00:00,1,1, +131,7/5/2018 23:59:00,6/30/2018 12:59:00,,"2018 Fourth Primary",1,1,0,,,5/30/2018 0:00:00,1,1, +132,6/4/2018 12:00:00,6/4/2018 12:00:00,,"2018 Primary Supplemental",0,2,0,6/1/2018 0:00:00,131,6/1/2018 0:00:00,1,1, +133,9/10/2018 23:59:00,9/3/2018 0:00:00,,"2018 First General",1,1,0,,,7/1/2018 0:00:00,1,1, +134,10/8/2018 23:59:00,10/1/2018 23:59:00,,"2018 Second General",1,1,0,,,9/4/2018 0:00:00,1,1, +135,11/1/2018 23:59:00,11/1/2018 23:59:00,,"2018 Third General",1,1,0,,,10/2/2018 0:00:00,1,1, +136,12/6/2018 23:59:00,12/1/2018 12:59:00,,"2018 Fourth General",1,1,0,,,10/31/2018 0:00:00,1,1, +137,11/5/2018 12:00:00,11/5/2018 12:00:00,,"2018 General Supplemental",0,2,0,11/2/2018 23:59:00,136,11/2/2018 23:59:00,1,1, +138,4/8/2019 23:59:00,4/1/2019 23:59:00,,"2019 First Biannual",1,3,0,,,10/2/2018 0:00:00,1,1, +139,4/8/2019 23:59:00,4/8/2019 23:59:00,,"2019 School District Report",1,4,0,,,2/6/2018 0:00:00,1,1, +140,10/15/2019 23:59:00,10/7/2019 23:59:00,,"2019 Second Biannual",1,3,0,,,4/2/2019 0:00:00,1,1, +141,10/15/2019 23:59:00,10/15/2019 23:59:00,,"2019 RLE First School District Report",1,4,0,,,4/8/2019 0:00:00,1,1, +142,12/5/2019 23:59:00,12/5/2019 23:59:00,,"2019 RLE Second School District Report",1,4,0,,,10/15/2019 0:00:00,1,1, +143,4/13/2020 23:59:00,4/6/2020 23:59:00,,"2020 First Biannual",1,3,0,,,10/8/2019 0:00:00,2,1, +144,4/13/2020 23:59:00,4/6/2020 23:59:00,,"2020 First Primary Report",1,1,0,,,10/8/2019 0:00:00,1,1, +145,5/11/2020 23:59:00,5/4/2020 23:59:00,,"2020 Second Primary Report",1,1,0,,,4/7/2020 0:00:00,1,1, diff --git a/data/Cam_FilingPeriod.xlsx b/data/Cam_FilingPeriod.xlsx deleted file mode 100644 index 6cdbdb2..0000000 Binary files a/data/Cam_FilingPeriod.xlsx and /dev/null differ diff --git a/data/Cam_FilingPeriodLobbyist.xlsx b/data/Cam_FilingPeriodLobbyist.xlsx deleted file mode 100644 index 0633ef4..0000000 Binary files a/data/Cam_FilingPeriodLobbyist.xlsx and /dev/null differ diff --git a/data/Cam_Loan.xlsx b/data/Cam_Loan.xlsx deleted file mode 100644 index 0d4378c..0000000 Binary files a/data/Cam_Loan.xlsx and /dev/null differ diff --git a/data/Cam_LoanTransaction.xlsx b/data/Cam_LoanTransaction.xlsx deleted file mode 100644 index adb21ea..0000000 Binary files a/data/Cam_LoanTransaction.xlsx and /dev/null differ diff --git a/data/Cam_Lobbyist.xlsx b/data/Cam_Lobbyist.xlsx deleted file mode 100644 index 6eecb9a..0000000 Binary files a/data/Cam_Lobbyist.xlsx and /dev/null differ diff --git a/data/Cam_LobbyistEmployer.xlsx b/data/Cam_LobbyistEmployer.xlsx deleted file mode 100644 index 14be827..0000000 Binary files a/data/Cam_LobbyistEmployer.xlsx and /dev/null differ diff --git a/data/Cam_PoliticalActionCommittee.xlsx b/data/Cam_PoliticalActionCommittee.xlsx deleted file mode 100644 index e107596..0000000 Binary files a/data/Cam_PoliticalActionCommittee.xlsx and /dev/null differ diff --git a/data/Cam_Report.xlsx b/data/Cam_Report.xlsx deleted file mode 100644 index eedb60c..0000000 Binary files a/data/Cam_Report.xlsx and /dev/null differ diff --git a/data/Cam_ReportLobbyist.xlsx b/data/Cam_ReportLobbyist.xlsx deleted file mode 100644 index b837ca1..0000000 Binary files a/data/Cam_ReportLobbyist.xlsx and /dev/null differ diff --git a/data/Cam_SpecialEventLobbyist.xlsx b/data/Cam_SpecialEventLobbyist.xlsx deleted file mode 100644 index 17bef46..0000000 Binary files a/data/Cam_SpecialEventLobbyist.xlsx and /dev/null differ diff --git a/nmid/urls.py b/nmid/urls.py index de4d43d..a6998ba 100644 --- a/nmid/urls.py +++ b/nmid/urls.py @@ -24,7 +24,7 @@ ContributionViewSet, ExpenditureViewSet, ContributionDownloadViewSet, \ ExpenditureDownloadViewSet, TransactionViewSet, TopDonorsView, \ TopExpensesView, CommitteeList, CommitteeDetail, ContributionDetail, DownloadView, \ - ExpenditureDetail, SearchView, SearchAPIView, DonationsView, RacesView, RaceDetail, \ + ExpenditureDetail, SearchView, SearchAPIView, DonationsView, \ LoanViewSet, TopEarnersView, TopEarnersWidgetView, AboutView, \ flush_cache, bulk_candidates, bulk_committees, bulk_lobbyists, bulk_employers, \ bulk_employments, OrganizationList, OrganizationDetail, LobbyistContributionViewSet, \ @@ -58,8 +58,6 @@ url(r'^expenditures/(?P<pk>[0-9]+)/$', ExpenditureDetail.as_view(), name='expenditure-detail'), url(r'^committees/$', CommitteeList.as_view(), name='committee-list'), url(r'^committees/(?P<slug>[\w-]+)/$', CommitteeDetail.as_view(), name='committee-detail'), - url(r'^races/$', RacesView.as_view(), name='races'), - url(r'^races/(?P<pk>[\w-]+)/$', RaceDetail.as_view(), name='race-detail'), url(r'^downloads/$', DownloadView.as_view(), name='downloads'), url(r'^lobbyist-portal/$', LobbyistPortal.as_view(), name='lobbyist-portal'), url(r'^lobbyists/$', LobbyistList.as_view(), name='lobbyist-list'),