{% extends "base.html" %} {% block cards_layout %}
{% block cards %} {% for r in rolling_stock %}
{% for i in r.image.all %} {% if forloop.first %}Card image cap{% endif %} {% endfor %}

{{ r }}

{% if r.tags.all %}

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

{% endif %}
Data
Type {{ r.rolling_class.type }}
Company {{ r.rolling_class.company }}
Class {{ r.rolling_class.identifier }}
Road number {{ r.road_number }}
Era {{ r.era }}
Manufacturer {{ r.manufacturer|default_if_none:"" }}{% if r.manufacturer.website %} {% endif %}
Scale {{ r.scale }}
SKU {{ r.sku }}
{% if r.decoder %}
DCC data
Decoder {{ r.decoder }}
Address {{ r.address }}
{% endif %}
Show all data {% if request.user.is_staff %}Edit{% endif %}
{% endfor %} {% endblock %}
{% endblock %}