diff --git a/pinaxcon/templates/static_pages/attend/day-trip.html b/pinaxcon/templates/static_pages/attend/day-trip.html index b1f6568..ef3ebed 100644 --- a/pinaxcon/templates/static_pages/attend/day-trip.html +++ b/pinaxcon/templates/static_pages/attend/day-trip.html @@ -18,6 +18,7 @@
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.
+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 999de40..4f3794b 100644 --- a/pinaxcon/templates/static_pages/attend/stay.html +++ b/pinaxcon/templates/static_pages/attend/stay.html @@ -19,6 +19,7 @@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.
+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 5cfd38a..c0b313d 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"),