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.
 
 
 
 
 
 

53 lines
1.5 KiB

{% extends "admin/base_site.html" %}
{% block title %}Сверка НПФ{% endblock %}
{% block breadcrumbs %}
<div class="breadcrumbs"><a href="/admin/">Главная</a> &rsaquo; Сверка НПФ</div>
{% endblock %}
{% block content %}
<div id="content-main">
{% if xls %}
{% if new_licenses %}
<h1>Новые фонды</h1>
<ul>
{% for license in new_licenses %}
<li>{{ license }}</li>
{% endfor %}
</ul>
<hr />
{% else %}
<h1>Нет новых фондов.</h1>
<hr />
{% endif %}
{% if closed_licenses %}
<h1>Закрывшиеся фонды</h1>
<ul>
{% for license in closed_licenses %}
<li>{{ license }}</li>
{% endfor %}
</ul>
<hr />
{% else %}
<h1>Нет закрывшихся фондов.</h1>
<hr />
{% endif %}
{% endif %}
<h1>Выберите excel файл:</h1>
<table>
<form enctype="multipart/form-data" method="post" action=".">
{% csrf_token %}
{{ form.as_table }}
<tr>
<td></td>
<td>
<input type="submit" name="save_it" value="Сверить" />
</td>
</tr>
</form>
</table>
</div>
{% endblock %}