17 lines
357 B
Text
17 lines
357 B
Text
|
|
{% extends "mastodon_base" %}
|
||
|
|
|
||
|
|
{% block main %}
|
||
|
|
Here are today's orders for @{{user.mastodon_account()}}
|
||
|
|
|
||
|
|
{{orders_str}}
|
||
|
|
|
||
|
|
{% if repeats > 1 %}
|
||
|
|
These are the same orders from the last {{repeats}} days.
|
||
|
|
{% endif %}
|
||
|
|
|
||
|
|
Proof of compliance is due by {{due_at|short_time}}
|
||
|
|
{% if verify_at %}
|
||
|
|
Verification due by {{verify_at|short_time}}
|
||
|
|
{% endif %}
|
||
|
|
{% endblock %}
|