{% extends "base.html" %} {% block header %}

Consists

{% endblock %} {% block cards %} {% for c in consist %}
{% if c.image %} Card image cap {% else %} {% with c.consist_item.first.rolling_stock as r %} {% for i in r.image.all %} {% if i.is_thumbnail %}Card image cap{% endif %} {% endfor %} {% endwith %} {% endif %}

{{ c }}

{% if c.tags.all %}

Tags: {% for t in c.tags.all %} {{ t.name }}{# new line is required #} {% endfor %}

{% endif %} {% if c.address %} {% endif %}
Consist data
Address {{ c.address }}
Company {{ c.company }}
Era {{ c.era }}
Length {{ c.consist_item.all | length }}
Show all data {% if request.user.is_staff %}Edit{% endif %}
{% endfor %} {% endblock %} {% block pagination %} {% if consist.has_other_pages %} {% endif %} {% endblock %}