{% extends "cards.html" %} {% block cards %} {% for d in data %}
{% if d.image %} Card image cap {% else %} {% with d.consist_item.first.rolling_stock as r %} {% for i in r.image.all %} {% if forloop.first %}Card image cap{% endif %} {% endfor %} {% endwith %} {% endif %}

{{ d }}

{% if d.tags.all %}

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

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