list views

This commit is contained in:
vabene1111
2018-05-03 20:43:47 +02:00
parent 284beb47af
commit e722863093
8 changed files with 50 additions and 29 deletions

View File

@@ -0,0 +1,17 @@
{% extends "base.html" %}
{% load crispy_forms_tags %}
{% load i18n %}
{% load django_tables2 %}
{% block title %}{% trans 'List' %} - {{ title }}{% endblock %}
{% block content %}
<h3>{{ title }} {% trans 'List' %}</h3>
<br/>
{% if table %}
{% render_table table %}
{% endif %}
{% endblock %}