mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
17 lines
410 B
HTML
17 lines
410 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{% trans %}Public announcement{% endtrans %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% call macros.box() %}
|
|
<form class="form" method="post" role="form">
|
|
{{ form.hidden_tag() }}
|
|
{{ macros.form_field(form.announcement_subject) }}
|
|
{{ macros.form_field(form.announcement_body, rows=10) }}
|
|
{{ macros.form_field(form.submit) }}
|
|
</form>
|
|
{% endcall %}
|
|
{% endblock %}
|