blob: b099a039b8ff7eb0696845a105b97bb0deb75add (
plain)
1
2
3
4
5
6
7
8
9
10
|
{%extends "page.html"%}
{%block title%}{%if not msg.hiddenstatus%}{{msg.subject}}{%endif%}{%endblock%}
{%block contents%}
{%if not msg.hiddenstatus%}
<h1 class="subject">{{msg.subject}}</h1>
{%endif%}
{% include '_message.html' with msg=msg lists=lists %}
<form id="mail_other_options_form" method="post" action="/"></form>
{%endblock%}
|