21 lines
700 B
HTML
21 lines
700 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block meta %}
|
||
|
<link rel="stylesheet" href="/static/view.css" />
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h2>{{archive[1]}}</h2>
|
||
|
<form action="/labels/{{archive[0]}}" method="post">
|
||
|
<div class="flex-container">
|
||
|
{% for ltype in res_labels %}
|
||
|
<div class="flex-item"><b>{{ltype}}</b>
|
||
|
{% for for_temp in res_labels[ltype] %}
|
||
|
<input type="checkbox" id="{{for_temp[0]}}" name="{{for_temp[0]}}" {% if for_temp[1] in labels_names %}checked{% endif %}><label for="{{for_temp[0]}}">{{for_temp[1]}}</label>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
<input type="submit" value="Submit">
|
||
|
</form>
|
||
|
{% endblock %}
|