2020-04-30 18:11:03 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2020-05-04 21:37:21 +00:00
|
|
|
{% load i18n crispy_forms_filters django_tables2 %}
|
2020-04-30 18:11:03 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2020-05-04 21:37:21 +00:00
|
|
|
{% 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 %}
|
2020-04-30 18:11:03 +00:00
|
|
|
{% render_table table %}
|
|
|
|
{% endblock %}
|