network_inventory/src/backups/templates/backups/backup_list.html

9 lines
234 B
HTML
Raw Normal View History

2020-01-11 17:41:03 +01:00
{% extends "core/base.html" %}
2020-01-11 17:01:21 +01:00
{% load render_table from django_tables2 %}
{% block section_title %}List of Backups{% endblock %}
{% block content %}
2020-08-03 21:10:05 +02:00
<div class="table-responsive">
{% render_table backups %}
</div>
2020-01-11 17:01:21 +01:00
{% endblock %}