mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
20 lines
439 B
HTML
20 lines
439 B
HTML
{% extends "base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% load i18n %}
|
|
{% load django_tables2 %}
|
|
|
|
|
|
|
|
{% 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>
|
|
{% render_table table %}
|
|
</div>
|
|
|
|
{% endblock content %} |