summaryrefslogtreecommitdiff
path: root/templates/admin
diff options
context:
space:
mode:
authorsriyasainath2017-05-31 22:07:00 +0530
committersriyasainath2017-05-31 22:07:00 +0530
commitc8ece6ff23c37b6b23868f81c55b725ebd0e21c3 (patch)
treeaea68eefe3aa3d84d5481624dbfb0b09221b3d6b /templates/admin
parent5c0587ddf33720cd017a8e7b3a3b2e51ef6b8720 (diff)
downloadSBHS-2018-Rpi-c8ece6ff23c37b6b23868f81c55b725ebd0e21c3.tar.gz
SBHS-2018-Rpi-c8ece6ff23c37b6b23868f81c55b725ebd0e21c3.tar.bz2
SBHS-2018-Rpi-c8ece6ff23c37b6b23868f81c55b725ebd0e21c3.zip
Add template for updating MID
Diffstat (limited to 'templates/admin')
-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