Skip to content

Commit 6ba9d3a

Browse files
author
Julia Elman
committed
Fixed venue to not use underscores.
1 parent ed67fb2 commit 6ba9d3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonkc_site/templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h1>{{ next_event.time|date:"F j"|upper }}</h1>
2525
</time>
2626
</header>
2727
<h2>{{ next_event.name|safe }}</h2>
28-
{% if next_event.venue_id %}<address>{{ next_event.venue_name }} // {{ next_event.venue_address1 }}{% if next_event.venue_address2 %}, {{ next_event.venue_address2 }}{% endif %} // {{ next_event.venue_city }}, {{ next_event.venue_state }} {{ next_event.venue_zip }}</address>{% else %}Venue TBD{% endif %}
28+
{% if next_event.venue.id %}<address>{{ next_event.venue.name }} // {{ next_event.venue.address1 }}{% if next_event.venue.address2 %}, {{ next_event.venue.address2 }}{% endif %} // {{ next_event.venue.city }}, {{ next_event.venue.state }} {{ next_event.venue.zip }}</address>{% else %}Venue TBD{% endif %}
2929
{% if next_event.description %}<p class="description">{{ next_event.description|safe }}</p>{% endif %}
3030
<p class="rsvp">RSVP at <a href="{{ next_event.event_url }}"><img src="{{ STATIC_URL }}meetup-logo.gif" alt="PythonKC Meetup RSVP for {{ next_event.name|safe }}"></a></p>
3131
</div>

0 commit comments

Comments
 (0)