Use base templates
[tickle] / tickle / templates / tickle / boulder_detail.html
1 {% extends 'tickle/base.html' %}
2
3 {% block tickle_title_name %}{{ boulder.name }}{% endblock %}
4 {% block tickle_header_name %}{{ boulder.name }}{% endblock %}
5
6 {% block tickle_nav %}
7   {% include 'tickle/area_breadcrumb.html' with area=boulder.area is_parent=True %}
8 {% endblock %}
9
10 {% block tickle_extra_header %}
11   <h2>{{ boulder.difficulty }}</h2>
12 {% endblock %}
13
14 {% block tickle_main %}
15   <div>{{ boulder.notes }}</div>
16 {% endblock %}