mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
29 lines
681 B
HTML
29 lines
681 B
HTML
{% extends "base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% load i18n %}
|
|
{% load django_tables2 %}
|
|
|
|
{% block title %}{% trans 'List' %}{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="table-container">
|
|
<h3>{{ title }} {% trans 'List' %}
|
|
{% if create_url %}
|
|
<a href="{% url create_url %}"> <i class="fal fa-plus-circle"></i>
|
|
</a>
|
|
{% endif %}
|
|
</h3>
|
|
{% if import_btn %}
|
|
<a href="{% url 'data_batch_import' %}" class="btn btn-warning">{% trans 'Import all' %}</a>
|
|
<br/>
|
|
<br/>
|
|
{% endif %}
|
|
|
|
{% render_table table %}
|
|
|
|
|
|
</div>
|
|
|
|
{% endblock content %} |