summaryrefslogtreecommitdiff
path: root/templates/admin/changeMID.html
blob: 784579df61d447beac3a390fd05220ff628ee2cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 %}