You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
418 B
HTML
17 lines
418 B
HTML
{%- extends "base.html" %}
|
|
|
|
{%- block title %}
|
|
{% trans %}Public announcement{% endtrans %}
|
|
{%- endblock %}
|
|
|
|
{%- block content %}
|
|
{%- call macros.card() %}
|
|
<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 %}
|