You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
454 B
14 lines
454 B
{% extends 'base_index.html' %}
|
|
{% block title %}Рабочий кабинет{% endblock %}
|
|
{% block content %}
|
|
<div class="name">Массовое открытие дипломов</div>
|
|
<form enctype="multipart/form-data" method="post" >
|
|
{% csrf_token %}
|
|
<table>
|
|
{{form.as_table}}
|
|
</table>
|
|
<div class="errors">{{ ERROR }}</div>
|
|
<input type="submit" value="Submit" id="Save"/>
|
|
</form>
|
|
|
|
{% endblock %} |