16 lines
409 B
HTML
16 lines
409 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load i18n crispy_forms_filters django_tables2 %}
|
|
|
|
{% block content %}
|
|
{% if form %}
|
|
<form method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<button class="btn btn-block btn-success">{% trans "Submit" %}</button>
|
|
</form>
|
|
<hr>
|
|
{% endif %}
|
|
{% render_table table %}
|
|
{% endblock %}
|