diff --git a/pinaxcon/templates/static_pages/attend/day-trip.html b/pinaxcon/templates/static_pages/attend/day-trip.html index b1f6568545187045dcd1791e870e63dfdbd9bfbd..ef3ebed6a1f96a2bf56ac257171b3224ef1a4d4c 100644 --- a/pinaxcon/templates/static_pages/attend/day-trip.html +++ b/pinaxcon/templates/static_pages/attend/day-trip.html @@ -18,6 +18,7 @@
  • How to Get Here
  • Scheduling Your Visit
  • Food and Activities
  • +
  • Financial Aid
  • How to Get Here

    @@ -50,4 +51,10 @@

    From family-friendly hikes to museums, wine tours to wind swept beaches, and lots of kid-friendly attractions, we encourage folks to bring their families along! We will offer free childcare for kids from 6 months to 12 years of age during the conference.

    +

    Financial Aid

    + +

    If your employer isn't paying for you to attend North Bay Python, then you should apply for financial aid. If money is the reason you're considering day tripping to North Bay Python, rather than staying at one of the hotels, then you should definitely apply for financial aid.

    + +

    We're a 501(c)(3) nonprofit and our priority is accessibility. Our goal is for attending North Bay Python to cost about as much as staying home. Learn more about our financial aid program, including application process, timelines, and policies. Don't worry, it's easier than it sounds!

    + {% endblock %} diff --git a/pinaxcon/templates/static_pages/attend/stay.html b/pinaxcon/templates/static_pages/attend/stay.html index 999de4026e7ea2acaab3a724dcd191427d82af61..4f3794bf39c535a7ade1146075317f70878f2349 100644 --- a/pinaxcon/templates/static_pages/attend/stay.html +++ b/pinaxcon/templates/static_pages/attend/stay.html @@ -19,6 +19,7 @@
  • Lodging and Accommodation
  • Scheduling Your Visit
  • Food and Activities
  • +
  • Financial Aid
  • How to Get Here

    @@ -57,4 +58,10 @@

    From family-friendly hikes to museums, wine tours to wind swept beaches, and lots of kid-friendly attractions, we encourage folks to bring their families along and stay as long as they can! We will offer free childcare for kids from 6 months to 12 years of age during the conference.

    +

    Financial Aid

    + +

    If your employer isn't paying for you to attend North Bay Python, then you should apply for financial aid. If you're hesitating about applying for financial aid, don't.

    + +

    We're a 501(c)(3) nonprofit and our priority is accessibility. Our goal is for attending North Bay Python to cost about as much as staying home. Learn more about our financial aid program, including application process, timelines, and policies. Don't worry, it's easier than it sounds!

    + {% endblock %} diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index 5cfd38a271c8b6e2fec253bb877ac7163ba7f02c..c0b313d028d29b689c156f2dfddaea7214951967 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -39,7 +39,11 @@ urlpatterns = [ url(r"^tickets$", RedirectView.as_view(url="attend")), url(r"^tickets/buy$", views.buy_ticket, name="buy_ticket"), url(r"^attend/business-case$", TemplateView.as_view(template_name="static_pages/attend/business-case.html"), name="attend/business-case"), - url(r"^attend/finaid$", TemplateView.as_view(template_name="static_pages/attend/finaid.html"), name="attend/finaid"), + + url(r"^financial-aid$", TemplateView.as_view(template_name="static_pages/attend/finaid.html"), name="attend/finaid"), + url(r"^attend/finaid$", RedirectView.as_view(url="/financial-aid")), + url(r"^attend/financial-aid$", RedirectView.as_view(url="/financial-aid")), + url(r"^attend/travel$", TemplateView.as_view(template_name="static_pages/attend/travel.html"), name="attend/travel"), url(r"^attend/hotels$", TemplateView.as_view(template_name="static_pages/attend/hotels.html"), name="attend/hotels"), url(r"^attend/tshirt$", TemplateView.as_view(template_name="static_pages/attend/tshirt.html"), name="attend/tshirt"),