aboutsummaryrefslogtreecommitdiffstats
path: root/templates/staff/tables/edit.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/staff/tables/edit.html')
-rw-r--r--templates/staff/tables/edit.html50
1 files changed, 0 insertions, 50 deletions
diff --git a/templates/staff/tables/edit.html b/templates/staff/tables/edit.html
deleted file mode 100644
index b3b9faae..00000000
--- a/templates/staff/tables/edit.html
+++ /dev/null
@@ -1,50 +0,0 @@
-{% extends "main/base.html" %}
-{% block title %}Staff | Home{% endblock %}
-{% block og_title %}Staff | Home{% endblock %}
-{% block og_description %}Landing page for the staff management area{% endblock %}
-{% block content %}
- <div class="uk-container uk-section uk-container-small">
- {% if message %}
- <div class="uk-alert uk-alert-warning">
- {{ message }}
- </div>
- {% endif %}
- <form uk-grid class="uk-grid-small" action="{{ url_for("staff.tables.edit", table=table) }}" method="post">
- <div class="uk-width-expand">
- <p>Primary key: <strong>"<span class="fira-code">{{ primary_key }}</span>"</strong></p>
- </div>
- <div class="uk-width-auto">
- <a class="uk-button uk-button-default" href="{{ url_for("staff.tables.table", table=table, page=1) }}"><i class="uk-icon fa-fw fas fa-arrow-left"></i>&nbsp; Back</a>
- <input class="uk-button uk-button-primary" type="submit" id="submit" value="Save" />
- </div>
- <div class="uk-width-1-1">
- <div id="editor" class="uk-textarea">{{ document }}</div>
- <input type="hidden" name="json" id="json" />
- </div>
-
- <input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
-
- {% if old_primary %}
- <input type="hidden" name="old_primary" value="{{ old_primary }}"/>
- {% endif %}
- </form>
-
- <script type="application/javascript">
- "use strict";
-
- window.onload = () => {
- let editor = ace.edit("editor");
-
- editor.session.setMode("ace/mode/json");
- editor.session.setUseWrapMode(true);
-
- editor.setTheme("ace/theme/iplastic");
- editor.setShowPrintMargin(false);
-
- editor.on("input", function () {
- document.getElementById("json").value = editor.getValue();
- });
- };
- </script>
- </div>
-{% endblock %}