Show queued tasks

This commit is contained in:
Joscha 2023-08-06 20:31:11 +02:00
parent 2c0a496897
commit ad5da60b5a
8 changed files with 180 additions and 25 deletions

View file

@ -1,8 +1,8 @@
{% extends "base.html" %}
{% block title %}queue{% endblock %}
{% block title %}queue ({{ table.tasks.len() }}){% endblock %}
{% block body %}
<h2>Queue</h2>
<p>Sorry, nothing here yet.</p>
<h2>Queue ({{ table.tasks.len() }})</h2>
{{ table|safe }}
{% endblock %}