12 lines
300 B
HTML
12 lines
300 B
HTML
|
{% extends "base.html" %}
|
||
|
{% import 'bootstrap/wtf.html' as wtf %}
|
||
|
|
||
|
{% block app_content %}
|
||
|
<h1>{{ _('Send Message to %(recipient)s', recipient=recipient) }}</h1>
|
||
|
<div class="row">
|
||
|
<div class="col-md-4">
|
||
|
{{ wtf.quick_form(form) }}
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|