Changeset - 6047bdfaa487
[Not reviewed]
0 3 0
Josh Simmons - 5 years ago 2019-06-09 23:05:27
joshuasimmons@google.com
add finaid info to traveler pages, update finaid urls
3 files changed with 19 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/static_pages/attend/day-trip.html
Show inline comments
...
 
@@ -20,2 +20,3 @@
 
    <li><a href="#food-and-activities">Food and Activities</a></li>
 
    <li><a href="#financial-aid">Financial Aid</a></li>
 
</ul>
...
 
@@ -52,2 +53,8 @@
 

	
 
<h2>Financial Aid<a name="financial-aid"></a></h2>
 

	
 
<p>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.</p>
 

	
 
<p>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 <a href="/financial-aid">financial aid</a> program, including application process, timelines, and policies. Don't worry, it's easier than it sounds!</p>
 

	
 
{% endblock %}
pinaxcon/templates/static_pages/attend/stay.html
Show inline comments
...
 
@@ -21,2 +21,3 @@
 
    <li><a href="#food-and-activities">Food and Activities</a></li>
 
    <li><a href="#financial-aid">Financial Aid</a></li>
 
</ul>
...
 
@@ -59,2 +60,8 @@
 

	
 
<h2>Financial Aid<a name="financial-aid"></a></h2>
 

	
 
<p>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.</p>
 

	
 
<p>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 <a href="/financial-aid">financial aid</a> program, including application process, timelines, and policies. Don't worry, it's easier than it sounds!</p>
 

	
 
{% endblock %}
pinaxcon/urls.py
Show inline comments
...
 
@@ -41,3 +41,7 @@ urlpatterns = [
 
    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"),
0 comments (0 inline, 0 general)