mirror of https://gitlab.crans.org/bde/nk20
16 lines
405 B
HTML
16 lines
405 B
HTML
{% extends "base.html" %}
|
|
{% load render_table from django_tables2 %}
|
|
{% load i18n crispy_forms_tags %}
|
|
{% block content %}
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<button class="btn btn-primary" type="submit">{% trans "Submit" %}</button>
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% block extrajavascript %}
|
|
<script type="text/javascript">
|
|
</script>
|
|
{% endblock %}
|