{% load static %} {% load solo_tags %} {% load markdown %} {% get_solo 'portal.SiteConfiguration' as site_conf %} {{ site_conf.site_name }}
{% block header %}{% endblock %}
{% block cards %} {% for r in rolling_stock %}
{% for i in r.image.all %} {% if i.is_thumbnail %}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 {% if r.manufacturer.website %}{% endif %}{{ r.manufacturer }}{% 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 %}
{% block pagination %}{% endblock %}
{% block extra_content %}{% endblock %}
{% include 'includes/footer.html' %}