
Enable a list of backups that you can restore immediately from the ui Change-Id: I8f9bdf85b4f476ea3af9e7c12f50a86d173a999f
17 lines
464 B
HTML
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 %} |