{% extends "base.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load django_tables2 %} {% block title %}{% trans 'List' %}{% endblock %} {% block content %} {% if request.resolver_match.url_name in 'list_storage,list_recipe_import,list_sync_log' %} {% endif %}

{{ title }} {% trans 'List' %}

{% if filter %}

{% csrf_token %} {{ filter.form|crispy }}
{% endif %} {% if import_btn %} {% trans 'Import all' %}

{% endif %} {% for table in tables %}

{{ table.attrs.table_name }} {% trans 'List' %} {% if table.attrs.create_url %} {% endif %}

{% render_table table %} {% endfor %}
{% endblock content %}