khaganat-web/khaganat/templates/npb/report_form.html
2020-02-28 19:06:37 +01:00

15 lines
418 B
HTML

{% extends "khaganat/centered_dialog.html" %}
{% load i18n %}
{% block title %}{% trans 'Report paste' %}{% endblock %}
{% block dialog_class %}is-warning{% endblock %}
{% block dialog_size %}is-two-thirds{% endblock %}
{% block dialog %}
<form action="" method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit" class="button is-warning">{% trans "Submit" %}</button>
</form>
{% endblock %}