{% extends "layout.html" %} {% block body %}

Welcome back, {{ current_user.username }}! This is your task dispatch service. Documentation for its use is available here.

Notice: dispatch.sr.ht is scheduled for deprecation on October 1st, 2022. The creation of new tasks is disabled. For more details, see this blog post.
{% if not any(tasks) %}

You haven't created any tasks yet.

{% else %}
{% for task in tasks %}

{{ task.name }}

{{ task.taskdef.description() }}

{% endfor %}
{% endif %}
{{pagination()}}
{% endblock %}