mirror of
https://github.com/miguelgrinberg/microblog.git
synced 2025-12-08 18:02:07 +00:00
8 lines
209 B
HTML
8 lines
209 B
HTML
{% extends "base.html" %}
|
|
{% import "bootstrap_wtf.html" as wtf %}
|
|
|
|
{% block content %}
|
|
<h1>{{ _('Send Message to %(recipient)s', recipient=recipient) }}</h1>
|
|
{{ wtf.quick_form(form) }}
|
|
{% endblock %}
|