{% extends "base.html" %} {% block title %}{{ _('Dev Infos') }} — MediaForge{% endblock %} {% block styles %} {% endblock %} {% block content %}
{% if posts %} {% for post in posts %}
{% if post.type == 'feature' %}{{ _('Feature') }} {% elif post.type == 'fix' %}{{ _('Fix') }} {% elif post.type == 'warning' %}{{ _('Warning') }} {% else %}{{ _('Announcement') }} {% endif %} {% if post.author %}{{ post.author }}{% endif %} {{ post.formatted_time or post.remote_created_at or '' }}

{{ post.title }}

{{ post.body_html|default(post.body, true)|safe }}
{% endfor %} {% else %}
{{ _('No dev infos yet.') }}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}