Files
freezer-web-ui/freezer_ui/backups/templates/backups/index.html
Memo Garcia 7e1ba92a87 Backup history.
Enable a list of backups that you can restore immediately from the ui

Change-Id: I8f9bdf85b4f476ea3af9e7c12f50a86d173a999f
2015-07-30 21:30:38 +01:00

17 lines
464 B
HTML

{% extends 'base.html' %}
{% block css %}
{% include "_stylesheets.html" %}
<link href='{{ STATIC_URL }}freezer/css/freezer.css' type='text/css' media='screen' rel='stylesheet' />
{% endblock %}
{% load i18n %}
{% block title %}{% trans "Backup History" %}{% endblock %}
{% block page_header %}
{% include "horizon/common/_page_header.html" with title=_("Backup History") %}
{% endblock page_header %}
{% block main %}
{{ table.render }}
{% endblock %}