tablejohn/templates/queue.html
2023-08-06 20:50:42 +02:00

12 lines
306 B
HTML

{% extends "base.html" %}
{% block title %}queue ({{ table.tasks.len() }}){% endblock %}
{% block head %}
<script type="module" src="main.js"></script>
{% endblock %}
{% block body %}
<h2>Queue (<span id="count">{{ table.tasks.len() }}</span>)</h2>
<div id="queue">{{ table|safe }}</div>
{% endblock %}