{% extends "base.html" %} {% block content %}
{{ content.content_body }} {% with contents=context.contents.filter(path__startswith="firmware/v").order_by("date") %} {% for content in contents %}

{{content.content_title}}

{% if content.date is not none%}

Freigegeben: {{ content.date }}

{% endif %} {% if content.branches is not none %}

{% with branches=content.branches %} {% for branch in branches %} Freigeben in {{ branch["channel"] }} als {{branch["name"]}}{% if branch["date"] is defined %} am {{branch["date"]}}{% endif %}.
{% endfor %} {% endwith %} {% if content.site is not none %} Site
{% endif %} {% if content.gluon is not none %} Gluon
{% endif %}

{% endif %} {{content.content_body}} {% endfor %} {% endwith %}
{% endblock %}