{% extends 'wiki/base.html' %} {% load static i18n %} {% block title %}{% trans "Atualizações" %} - {% trans "Wiki" %}{% endblock %} {% block wiki_content %}
{% if updates %}
{% for update in updates %}
v{{ update.version }} {% if update.is_major %} {% trans "Principal" %} {% endif %}
{{ update.release_date|date:"d/m/Y" }}
{% if update.translations.first.title %}
{{ update.translations.first.title }}
{% endif %} {% if update.translations.first.content %}
{{ update.translations.first.content|safe|truncatewords_html:50 }}
{% endif %} {% if update.translations.first.changelog %}
{% trans "Changelog" %}
{{ update.translations.first.changelog|safe|truncatewords_html:30 }}
{% endif %}
{% endfor %}
{% else %}

{% trans "Nenhuma atualização encontrada" %}

{% trans "As atualizações aparecerão aqui quando forem publicadas." %}

{% endif %}
{% endblock %}