b0b8f30580
Bulma is simple and free full-CSS framework. Unlike Bootstrap, it fits within a single small CSS file. It is also well integrated in Django. https://bulma.io/
15 lines
441 B
HTML
15 lines
441 B
HTML
{% 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 %}
|