mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
17 lines
322 B
HTML
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 %} |