summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--templates/admin/changeMID.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/admin/changeMID.html b/templates/admin/changeMID.html
new file mode 100644
index 0000000..784579d
--- /dev/null
+++ b/templates/admin/changeMID.html
@@ -0,0 +1,26 @@
+{% extends "layout.html" %}
+{% load staticfiles %}
+
+{% block content %}
+<div class="container">
+ <div class="row">
+ {% include "account/sub_nav.html" %}
+ <div class="span12">
+ {% include "admin/sub_nav.html" %}
+
+ Username: <input id="username" type="text">
+
+ <br><br>
+
+ <select id="mid">
+ {% for mid in mid_count %}
+ <option>
+ {{ mid.board__mid }}-{{mid.mcount}}
+ </option>
+ {% endfor %}
+ </select>
+ <button class="btn btn-primary" onclick="updateMID()"> Update MID </button>
+ </div>
+ </div>
+</div>
+{% endblock %} \ No newline at end of file