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
...
 
@@ -18,6 +18,7 @@
 
    <li><a href="#transit">How to Get Here</a></li>
 
    <li><a href="#scheduling">Scheduling Your Visit</a></li>
 
    <li><a href="#food-and-activities">Food and Activities</a></li>
 
    <li><a href="#financial-aid">Financial Aid</a></li>
 
</ul>
 

	
 
<h2>How to Get Here<a name="transit"></a></h2>
...
 
@@ -50,4 +51,10 @@
 

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

	
 
<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
...
 
@@ -19,6 +19,7 @@
 
    <li><a href="#lodging">Lodging and Accommodation</a></li>
 
    <li><a href="#scheduling">Scheduling Your Visit</a></li>
 
    <li><a href="#food-and-activities">Food and Activities</a></li>
 
    <li><a href="#financial-aid">Financial Aid</a></li>
 
</ul>
 

	
 
<h2>How to Get Here<a name="transit"></a></h2>
...
 
@@ -57,4 +58,10 @@
 

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

	
 
<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
...
 
@@ -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"),
0 comments (0 inline, 0 general)