{% extends 'layout_repo.html' %} {% set active_page='repo' %} {% set active_repo_page='history' %} {% block title %}{% trans %}History{% endtrans %}{% endblock %} {% block content %} {% for entry in history_entries %} {% if entry.errors %} {% endif %} {% endfor %}
{% trans %}Date{% endtrans %} {% trans %}Size{% endtrans %} {% trans %}Result{% endtrans %}
{{ entry.date | datetime }} {{ entry.size | filesize }} {% if not entry.errors %} {% if entry.in_progress %} {% trans %}In progress{% endtrans %} {% else %} {% trans %}Success{% endtrans %} {% endif %} {% else %} {% trans %}Error{% endtrans %} {% endif %}

{{ entry.errors }}

{% if limit == history_entries|count %} {% endif %} {% endblock %}