blob: 1fa3435a3bc10f147864163ec6dcb106eddee1a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% extends 'dashboard/dashboard_index.html' %}
{% load crispy_forms_tags %}
{% block title %}
Update MID
{% endblock %}
{% block main %}
<div class = "container">
<div class = "row">
<form class = "form-horizontal" action = "" method="POST" autocomplete="off">
{% csrf_token %}
{{form | crispy}}
<br>
<button class="btn btn-primary" type="submit" name='update_mid' value='update_mid'>Update Mid</button><br/>
</form>
</div>
</div>
{% endblock %}
|