Files
recipes/cookbook/templates/generic/list_template.html
vabene1111 e722863093 list views
2018-05-03 20:43:47 +02:00

17 lines
322 B
HTML

{% 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 %}