Changeset - e6a791bbd54d
[Not reviewed]
0 2 0
Christopher Neugebauer - 4 years ago 2019-08-31 01:39:47
_@chrisjrn.com
Hotels
2 files changed with 4 insertions and 4 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/static_pages/attend/hotels.html
Show inline comments
...
 
@@ -14,26 +14,26 @@
 

	
 

	
 
{% block content %}
 

	
 
<h2>Official Hotels</h2>
 

	
 
<p>We've made arrangements with three local accommodation providers to suit different budget options.</p>
 
<p>We recommend three local accommodation providers to suit different budget options.</p>
 

	
 
<h3>Hotel Petaluma</h3>
 

	
 
<div class="row">
 
  <div class="col-md-7">
 
    <dl class="dl-horizontal">
 
      <dt>Where</dt><dd><a href="https://www.google.com/maps/dir/Mystic+Theatre,+Petaluma+Boulevard+North,+Petaluma,+CA/Hotel+Petaluma,+205+Kentucky+St,+Petaluma,+CA+94952">205 Kentucky St (0.2mi from venue)</a></dd>
 
      <dt>Price</dt><dd>$162-$189/night + tax</dd>
 
      <dt>Style</dt><dd>Limited-Service Hotel</dd>
 
    </dl>
 
  </div>
 
  <div class="col-md-2">
 
    Booking link coming soon.
 
    <a href="https://www.choicehotels.com/reservations/groups/JX39I4">Book Hotel Petaluma</a>
 
  </div>
 
</div>
 

	
 
<p>The only hotel in Downtown Petaluma is a recently renovated boutique hotel in a 1920s-era building. It's a short walk from North Bay Python's venue, and is close to Petaluma's best places to eat and drink.</p>
 

	
 
<p>Hotel Petaluma has offered all of their available rooms to North Bay Python attendees, so if you want to stay as close as possible to the venue, book through our exclusive link, which will be available when registration opens.</p>
pinaxcon/urls.py
Show inline comments
...
 
@@ -42,14 +42,14 @@ urlpatterns = [
 

	
 
    url(r"^opportunity-grant/$", TemplateView.as_view(template_name="static_pages/opportunity-grant.html"), name="opportunity-grant"),
 
    url(r"^attend/finaid/$", RedirectView.as_view(url="/opportunity-grant")),
 
    url(r"^attend/finaid/$", RedirectView.as_view(url="/opportunity-grant")),
 
    url(r"^attend/financial-aid/$", RedirectView.as_view(url="/opportunity-grant")),
 

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