mirror of
https://gitlab.crans.org/bde/nk20
synced 2025-07-23 09:16:48 +02:00
Adding ingredients to a preparation
This commit is contained in:
20
apps/food/templates/food/transformedfood_list.html
Normal file
20
apps/food/templates/food/transformedfood_list.html
Normal file
@ -0,0 +1,20 @@
|
||||
{% extends "base.html" %}
|
||||
{% comment %}
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
{% endcomment %}
|
||||
{% load render_table from django_tables2 %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block content %}
|
||||
<div class="card bg-light mb-3">
|
||||
<h3 class="card-header text-center">
|
||||
Transformed food
|
||||
</h3>
|
||||
<div class="card-footer">
|
||||
<a class="btn btn-sm btn-success" href="{% url 'food:transformed_create' %}" data-turbolinks="false">
|
||||
New transformed food
|
||||
</a>
|
||||
</div>
|
||||
{% render_table table %}
|
||||
</div>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user