khaganat-web/khaganat/templates/npb/report_form.html

16 lines
441 B
HTML
Raw Normal View History

{% extends "khaganat/centered_dialog.html" %}
{% load bulma_tags %}
{% 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|bulma }}
<button type="submit" class="button is-warning">{% trans "Submit" %}</button>
</form>
{% endblock %}