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
...
 
@@ -15,12 +15,13 @@
 

	
 
{% block content %}
 
<ul>
 
    <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>
 

	
 
<p>How you get here depends, naturally, on where you're coming from. Broadly, your options are: <a href="/go/fly">flying</a>, cab rides, public transit, ride sharing apps, or renting a car.</p>
 

	
...
 
@@ -47,7 +48,13 @@
 
<p>Petaluma is right at the intersection of Sonoma, Napa, and Marin Counties. This three county region, which makes up the North Bay, is famous for its parkland, forests, agriculture, fine food, wine, beer, and spirits.</p>
 

	
 
<p>We've prepared a <a href="/food">food guide</a> which will help you find good eats in Petaluma, but if you're sticking around beyond the conference, you'll want to check out your favorite food or restaurant guide. We've also put together a <a href="/attend/transit">transit guide</a> to help you get around town once you're here.</p>
 

	
 
<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
...
 
@@ -16,12 +16,13 @@
 
{% block content %}
 
<ul>
 
    <li><a href="#transit">How to Get Here</a></li>
 
    <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>
 

	
 
<p>How you get here depends, naturally, on where you're coming from. Broadly, your options are: <a href="/go/fly">flying</a>, cab rides, public transit, ride sharing apps, or renting a car.</p>
 

	
...
 
@@ -54,7 +55,13 @@
 
<p>Petaluma is right at the intersection of Sonoma, Napa, and Marin Counties. This three county region, which makes up the North Bay, is famous for its parkland, forests, agriculture, fine food, wine, beer, and spirits. There's a lot to do here and we encourage you to explore while you're here!</p>
 

	
 
<p>We've prepared a <a href="/food">food guide</a> which will help you find good eats in Petaluma, but if you're sticking around beyond the conference, you'll want to check out your favorite food or restaurant guide. We've also put together a <a href="/attend/transit">transit guide</a> to help you get around town once you're here.</p>
 

	
 
<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
...
 
@@ -36,13 +36,17 @@ urlpatterns = [
 

	
 
    # attend
 
    url(r"^attend$", TemplateView.as_view(template_name="static_pages/attend/attend.html"), name="attend/attend"),
 
    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"),
 
    url(r"^attend/accessibility-and-accommodations$",TemplateView.as_view(template_name="static_pages/attend/accommodations.html"), name="attend/accessibility-and-accommodations"),
 
    url(r"^accessibility$", RedirectView.as_view(url="attend/accessibility-and-accommodations")),
 
    url(r"^accommodations$", RedirectView.as_view(url="attend/accessibility-and-accommodations")),
0 comments (0 inline, 0 general)