Changeset - 3a0724266cc3
[Not reviewed]
0 2 0
Joshua Simmons - 6 years ago 2017-11-14 04:04:22
i@joshuasimmons.name
indicate guides which are coming soon
2 files changed with 4 insertions and 3 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/static_pages/attend/guides.html
Show inline comments
...
 
@@ -24,22 +24,22 @@
 
<ul>
 
  <li><strong><a href="/attend/business-case">How to Pitch Your Manager</a></strong> can help you articulate the business case for paying for you to go to North Bay Python to your manager.</li>
 
  <li><strong><a href="/attend/travel">How to Get Here</a></strong> covers traveling to and from the conference, including driving, flying, and public transportation.</li>
 
  <li><strong><a href="/wiki/ride-sharing/">Ride Sharing</a></strong> with other attendees can help you meet other attendees - and save money!</li>
 
  <li><strong><a href="/attend/hotels">Where to Stay</a></strong> will help you navigate local lodging with a listing of options alongside info about distance and cost.</li>
 
</ul>
 

	
 
<h2>During the Conference</h2>
 

	
 
<ul>
 
  <li><strong><a href="/attend/accessibility-and-accommodations">Accessibility and Accommodations</a></strong> includes information for: parents; people with vision, hearing, and mobility issues; and people with dietary restrictions.</li>
 
  <li><strong><a href="/attend/emergencies">Emergencies</a></strong> might involve the Code of Conduct, contacting organizers, calling the police, or finding a hospital or pharmacy.</li>
 
  <!--li><strong><a href="/attend/food">Finding Food</a></strong> is easy in Petaluma, especially with this guide to local restaurants and markets with details about price, distance, and dietary restrictions.</li-->
 
  <li>Guide coming soon: <strong><!--a href="/attend/food"-->Finding Food<!--/a--></strong> is easy in Petaluma, especially with this guide to local restaurants and markets with details about price, distance, and dietary restrictions.</li>
 
  <li><strong><a href="/wiki/fitness">Fitness</a></strong> doesn't need to take a backseat while at North Bay Python, we have information about gyms and pools as well as running and hiking paths.</li>
 
  <li><strong><a href="/attend/transit">Getting Around P'town</a></strong> has key distances and details about taxis, busses, and walking paths.</li>
 
  <li><strong><a href="/wiki/meetups">Meetups</a></strong> and birds of a feather sessions are great ways to connect with other attendees. Find and attend one or organize your own!</li>
 
  <!--li><strong><a href="/wiki/activities">Partner- and Family-friendly Activities</a></strong> for folks who are bringing their families along to Sonoma County.</li-->
 
  <li>Guide coming soon: <strong><!--a href="/wiki/activities"-->Partner- and Family-friendly Activities<!--/a--></strong> for folks who are bringing their families along to Sonoma County.</li>
 
  <li><strong><a href="/code-of-conduct/harassment-incidents">Report Incidents</a></strong> as per our <a href="/code-of-conduct">Code of Conduct</a>. We have procedure guides for <a href="/code-of-conduct/harassment-incidents">attendees</a> as well as <a href="/code-of-conduct/harassment-staff-procedures">staff and volunteers</a>.</li>
 
  <!--li><strong><a href="/wiki/tourist-guide">Tourist Guide</a></strong> for those who are staying in Sonoma County before or after North Bay Python.</li-->
 
  <li>Guide coming soon: <strong><!--a href="/wiki/tourist-guide"-->Tourist Guide<!--/a--></strong> for those who are staying in Sonoma County before or after North Bay Python.</li>
 
</ul>
 

	
 
{% endblock %}
pinaxcon/urls.py
Show inline comments
...
 
@@ -16,24 +16,25 @@ urlpatterns = [
 
    url(r"^$", TemplateView.as_view(template_name="static_pages/homepage.html"), name="home"),
 

	
 
    # about
 
    url(r"^about/north-bay-python$", TemplateView.as_view(template_name="static_pages/about/north_bay_python.html"), name="about/north-bay-python"),
 
    url(r"^about/petaluma$", TemplateView.as_view(template_name="static_pages/about/petaluma.html"), name="about/petaluma"),
 
    url(r"^about/team$", TemplateView.as_view(template_name="static_pages/about/team.html"), name="about/team"),
 
    url(r"^about/transparency$", TemplateView.as_view(template_name="static_pages/about/transparency/transparency.html"), name="about/transparency"),
 
    url(r"^about/program-transparency$", TemplateView.as_view(template_name="static_pages/about/transparency/program.html"), name="about/program-transparency"),
 
    url(r"^about/colophon$", TemplateView.as_view(template_name="static_pages/about/colophon.html"), name="about/colophon"),
 

	
 
    # program
 
    url(r"^program/events$", TemplateView.as_view(template_name="static_pages/program/events.html"), name="program/events"),
 
    url(r"^events$", RedirectView.as_view(url="program/events")),
 
    url(r"^program/call-for-proposals$", TemplateView.as_view(template_name="static_pages/program/call_for_proposals.html"), name="program/call-for-proposals"),
 
    url(r"^program/selection-process$", TemplateView.as_view(template_name="static_pages/program/selection_process.html"), name="program/selection-process"),
 
    url(r"^proposals$", RedirectView.as_view(url="program/call-for-proposals")),
 
    url(r"^cfp$", RedirectView.as_view(url="program/call-for-proposals")),
 

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