Fleshing out area templates, add boulder/route detail templates
[tickle] / tickle / templates / tickle / pitch_list_item.html
1 {% if route.pitches.count > 1 %}
2   <header>
3     <h2>
4       P{{ pitch.order }}
5
6       {% if pitch.name %}
7         {{ pitch.name }}
8       {% endif %}
9     </h2>
10
11     <div>{{ pitch.difficulty }}</div>
12   </header>
13 {% endif %}
14
15 {% if pitch.notes %}
16   <div>{{ pitch.notes }}</div>
17 {% endif %}