{% load static %} {% load solo_tags %} {% get_solo 'portal.SiteConfiguration' as site_conf %} {{ site_conf.site_name }}
{% include 'navbar.html' %}
{{ site_conf.homepage_content | safe }}
{% if tags %}

active filter: {% for t in tags %}{{ t.tag }}{# new line is required #} {% endfor %}

{% endif %}
{% for r in rolling_stock %}
{% for t in r.thumbnail.all %}{% if t.is_thumbnail %}Card image cap {% else %}{% endif %}{% endfor %}

{{ r }}

{{ r.description|safe|truncatechars_html:256 }}

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

View {% if request.user.is_staff %}Edit{% endif %}
Last update: {{ r.updated_time | date:"M d, Y" }}
{% endfor %} {% if request.user.is_staff and not rolling_stock.has_next %} {% endif %}
{% if rolling_stock.has_other_pages %} {% endif %}
{% include 'footer.html' %}