{% extends "base.html" %} {% load i18n %} {% load static %} {% comment %} layerindex-web - updates list page template Copyright (C) 2016 Intel Corporation Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% block content %} {% autoescape on %}
{% for update in updates %} {% endfor %}
Update date Time Errors Warnings
{{ update.started }}{% if update.reload %} (reload){% endif %} {% if update.finished %}{{ update.started|timesince:update.finished }}{% else %}(in progress){% endif %} {% if update.errors %}{{ update.errors }}{% endif %} {% if update.warnings %}{{ update.warnings }}{% endif %}
{% if is_paginated %} {% load pagination %} {% pagination page_obj %} {% endif %} {% endautoescape %} {% endblock %}