diff options
Diffstat (limited to 'templates/staff/tables/index.html')
-rw-r--r-- | templates/staff/tables/index.html | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/templates/staff/tables/index.html b/templates/staff/tables/index.html deleted file mode 100644 index 206234bb..00000000 --- a/templates/staff/tables/index.html +++ /dev/null @@ -1,32 +0,0 @@ -{% extends "main/base.html" %} -{% block title %}Staff | Tables{% endblock %} -{% block og_title %}Staff | Tables{% endblock %} -{% block og_description %}Table management and editor{% endblock %} -{% block content %} - <div class="uk-container uk-section uk-container-small"> - <a class="uk-button uk-button-default" href="{{ url_for("staff.index") }}"><i class="uk-icon fa-fw fas fa-arrow-left"></i> Back</a> - <h1 class="uk-title uk-text-center"> - Table manager - </h1> - <p> - Click one of the tables below to manage its data: - </p> - <ul> - {% for table, obj in tables.items() %} - {% if obj.locked %} - <li> - <a href="{{ url_for("staff.tables.table", table=table, page=1) }}" title="Table locked for editing"> - <i class="uk-icon fa-fw fas fa-lock"></i> {{ table }} - </a> - </li> - {% else %} - <li> - <a href="{{ url_for("staff.tables.table", table=table, page=1) }}"> - <i class="uk-icon fa-fw fas fa-pencil"></i> {{ table }} - </a> - </li> - {% endif %} - {% endfor %} - </ul> - </div> -{% endblock %}
\ No newline at end of file |