2024-11-24 02:56:36 +08:00
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block subject %}
|
|
|
|
{% blocktrans %}USTP - Document Request Form Update{% endblocktrans %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block text_body %}
|
|
|
|
{% blocktrans %}You're receiving this email because your document request has been {{ request_status }}.{% endblocktrans %}
|
|
|
|
|
|
|
|
{% trans 'Please visit the site to check your request:' %}
|
|
|
|
{{ url|safe }}
|
2024-11-24 10:49:38 +08:00
|
|
|
|
|
|
|
{% trans 'For hardcopy requests, please proceed to the USTP office to avail of your requested copies:' %}
|
2024-11-24 02:56:36 +08:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block html_body %}
|
|
|
|
<p>
|
|
|
|
{% blocktrans %}You're receiving this email because your document request has been {{ request_status }}.{% endblocktrans %}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
{% trans 'Please visit the site to check your request:' %}
|
|
|
|
</p>
|
2024-11-24 10:49:38 +08:00
|
|
|
|
2024-11-24 02:56:36 +08:00
|
|
|
<p>
|
|
|
|
<a href="{{ url|safe }}"></a>
|
|
|
|
</p>
|
2024-11-24 10:49:38 +08:00
|
|
|
|
|
|
|
<p>
|
|
|
|
{% trans 'For hardcopy requests, please proceed to the USTP office to avail of your requested copies:' %}
|
|
|
|
</p>
|
2024-11-24 02:56:36 +08:00
|
|
|
{% endblock %}
|