{% extends "base.html" %} {% from "_when.html" import when_field with context %} {% block title %}Training ยท {{ app_name }}{% endblock %} {% block body %}

๐Ÿ“‹ Training โš™

Open {{ open|length }}

{% for a in open %}
{{ a.title }} {% if a.requires_verification %}๐Ÿ“ท photo{% endif %} {{ a.source }}
{% if a.description %}

{{ a.description }}

{% endif %}

{% if a.due_at %}due {{ a.due_at|rel(now) }} ({{ a.due_at|local }}){% else %}no deadline{% endif %} ยท reward {{ (a.reward_seconds)|dur }} off ยท penalty {{ (a.penalty_seconds)|dur }} on ยท +{{ a.xp }} xp

{{ when_field('โฑ did it earlier? set the time') }}
{% else %}

Nothing open. A good boy asks for work.

{% endfor %}

History

{% endblock %}