diff options
author | sriyasainath | 2017-05-31 22:07:00 +0530 |
---|---|---|
committer | sriyasainath | 2017-05-31 22:07:00 +0530 |
commit | b41417994703f43ea9ef63dd537358e5aedea406 (patch) | |
tree | c5be91be10d6caf8b1175ae898803d12948de194 | |
parent | 86041ee8306cd2e5a106c1e8a053f8aeea131f39 (diff) | |
download | SBHS-2018-Rpi-b41417994703f43ea9ef63dd537358e5aedea406.tar.gz SBHS-2018-Rpi-b41417994703f43ea9ef63dd537358e5aedea406.tar.bz2 SBHS-2018-Rpi-b41417994703f43ea9ef63dd537358e5aedea406.zip |
Add template for updating MID
-rw-r--r-- | templates/admin/changeMID.html | 26 |
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 |