mirror of
https://github.com/minetest/contentdb.git
synced 2024-12-23 14:32:25 +01:00
21 lines
538 B
HTML
21 lines
538 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ _("Send email to %(username)s", username=user.display_name) }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ self.title() }}</h1>
|
|
|
|
{% from "macros/forms.html" import render_field, render_submit_field, easymde_scripts %}
|
|
<form action="" method="POST" class="form" role="form">
|
|
{{ form.hidden_tag() }}
|
|
{{ render_field(form.subject) }}
|
|
{{ render_field(form.text, fieldclass="form-control markdown") }}
|
|
{{ render_submit_field(form.submit) }}
|
|
</form>
|
|
|
|
{{ easymde_scripts() }}
|
|
|
|
{% endblock %}
|