Fleshing out area templates, add boulder/route detail templates
[tickle] / tickle / templates / tickle / area_breadcrumb.html
1 {% if area.parent %}
2   {% include 'tickle/area_breadcrumb.html' with area=area.parent %} >
3 {% else %}
4   <a href='{% url "tickle:area-list" %}'>All</a> &gt;
5 {% endif %}
6
7 <a href='{% url "tickle:area-detail" pk=area.pk %}'>{{ area.name }}</a>