16 lines
343 B
Text
16 lines
343 B
Text
|
|
{% extends "telegram_base" %}
|
||
|
|
|
||
|
|
{% block main %}
|
||
|
|
Here are your orders -
|
||
|
|
|
||
|
|
{{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 %}
|
||
|
|
Proof of verification is due by {{verify_at|short_time}}
|
||
|
|
{% endif %}
|
||
|
|
{{m_url}}
|
||
|
|
{% endblock %}
|