Skip to content

Commit

Permalink
Added newline insertion back into jams page
Browse files Browse the repository at this point in the history
  • Loading branch information
FinnStokes committed Jan 4, 2013
1 parent e37f920 commit d284ca1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/jams/jam.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ <h1>{{jam.name}}</h1>
<div class="right">{{hours}} hours{% if minutes > 0 %} and {{minutes}} minutes{% endif %}</div>

<div class="left">Venue</div>
<div class="right">{{jam.venue}}</div>
<div class="right">{{jam.venue|linebreaksbr}}</div>

{% if jam.website %}
<div class="left">Website</div>
<div class="right">{{jam.website}}</div>
{% endif %}

<div class="left">Notes</div>
<div class="right">{{jam.notes}}</div>
<div class="right">{{jam.notes|linebreaksbr}}</div>

{% if games %}
<h2>Games</h2>
Expand Down

0 comments on commit d284ca1

Please sign in to comment.