mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
18 lines
487 B
HTML
18 lines
487 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ _("Edit reply") }} - {{ thread.title }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ _("Edit reply") }}</h1>
|
|
|
|
{% from "macros/forms.html" import render_field, render_submit_field %}
|
|
<form method="POST" action="" enctype="multipart/form-data">
|
|
{{ form.hidden_tag() }}
|
|
|
|
{{ render_field(form.comment, label="", class_="m-0", fieldclass="form-control markdown") }} <br />
|
|
{{ render_submit_field(form.submit) }}
|
|
</form>
|
|
{% endblock %}
|