diff --git a/public/urls.py b/public/urls.py index 369e6ffc5..24bcc5393 100644 --- a/public/urls.py +++ b/public/urls.py @@ -26,24 +26,24 @@ ), re_path(r"^person/.*\-(?P[0-9A-Za-z]+)/$", person, name="person-detail"), # bills - re_path( - r"^(?P{})/bills/$".format(state_abbr_pattern), - BillList.as_view(), - name="bills", - ), - # has trailing slash for consistency - re_path( - r"^(?P{})/bills/feed/$".format(state_abbr_pattern), - BillListFeed.as_view(), - name="bills_feed", - ), - re_path( - r"^(?P{})/bills/(?P[-\w ]+)/(?P[-\w\. ]+)/$".format( - state_abbr_pattern - ), - bill, - name="bill", - ), + # re_path( + # r"^(?P{})/bills/$".format(state_abbr_pattern), + # BillList.as_view(), + # name="bills", + # ), + # # has trailing slash for consistency + # re_path( + # r"^(?P{})/bills/feed/$".format(state_abbr_pattern), + # BillListFeed.as_view(), + # name="bills_feed", + # ), + # re_path( + # r"^(?P{})/bills/(?P[-\w ]+)/(?P[-\w\. ]+)/$".format( + # state_abbr_pattern + # ), + # bill, + # name="bill", + # ), re_path(r"^vote/(?P[-0-9a-f]+)/$", vote, name="vote-detail"), # fallbacks path("reportcard/", fallback), diff --git a/templates/public/components/header.html b/templates/public/components/header.html index 91805efbf..c4e98c474 100644 --- a/templates/public/components/header.html +++ b/templates/public/components/header.html @@ -26,41 +26,7 @@ {% if state_nav != "disabled" %} diff --git a/templates/public/views/home.html b/templates/public/views/home.html index 7cf95ff35..2f888dfaa 100644 --- a/templates/public/views/home.html +++ b/templates/public/views/home.html @@ -15,50 +15,22 @@
- Open States is now Plural! The Open States website is now available at open.pluralpolicy.com.
- You are welcome to continue using these tools while we prepare a migration process to help you adopt our new tools.
- You can try out an account using those new and improved tools now, at https://pluralpolicy.com/get-started/ + Open States is now Plural / SAI360!
+ This site still exists primarily for Open API users to manage API key registration.
+ Most other tools here are now disabled, in favor of our newer policy tracking application.
+ You can try out an account using those new and improved tools now, at Get Started with Plural
+
+ Free Bill Search and Find Your Legislator features still available at Plural Open
-

Discover Politics In Your State and Congress

-

Track bills, review upcoming legislation, and see how your local and federal representatives are voting.

-

Open States is the leading source for truly open data on policy-making process and legislation.

+ + +
-
-

Search & Track Legislation

- -
-
- -
- -
-
-
-
- -
-

Find Your Legislators

- -
-
-
- -
- -
-
- -
- -
-
-
-

diff --git a/web/urls.py b/web/urls.py index 18b2fcdd6..623291376 100644 --- a/web/urls.py +++ b/web/urls.py @@ -39,13 +39,13 @@ ), path("tos/", TemplateView.as_view(template_name="flat/tos.html")), path("api/registered/", TemplateView.as_view(template_name="flat/registered.html")), - re_path( - "^api/v1", - RedirectView.as_view( - url="https://docs.openstates.org/api-v3/", - permanent=True, - ), - ), + # re_path( + # "^api/v1", + # RedirectView.as_view( + # url="https://docs.openstates.org/api-v3/", + # permanent=True, + # ), + # ), ]