{% extends "base.html" %} {% block content %}
{{ content.content_body }} {% with contents=context.contents.filter(path__startswith="firmware/v").order_by("-content_title") %} {% with latest_release=contents[:1].values("content_title")[0] %} {% 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 Git Repository
{% endif %} {% if content.gluon is not none %} Gluon Git Repository
{% endif %} {% if content.rtd is not none %} Release Notes
{% endif %} {% if content.content_title == latest_release %} Hier herunterladen {% else %} Nicht mehr online verfügbar. (Kontakt) {% endif %}

{% endif %}

Änderungen

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