Added archive view, label editing

Archives can now be viewed, a cover can optionally be inserted into the covers directory.
Labels can now be edited.
This commit is contained in:
Michael Rodin 2023-10-19 18:24:36 +02:00
parent c3bd73a068
commit f0b8b1eb3d
8 changed files with 196 additions and 15 deletions

View file

@ -0,0 +1,21 @@
{% 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 %}