ingredient editor basics done

This commit is contained in:
vabene1111
2022-04-14 22:45:31 +02:00
parent 976bce5fdd
commit 297a8d4c8b
3 changed files with 54 additions and 14 deletions

View File

@@ -218,6 +218,18 @@
</div>
<div class="row m-0">
<div class="col-4">
<a href="{% url 'view_ingredient_editor' %}" class="p-1">
<div class="card p-0 no-gutters border-0">
<div class="card-body text-center p-0 no-gutters">
<i class="fas fa-th-list fa-2x"></i>
</div>
<div class="card-body text-break text-center p-0 no-gutters text-muted">
{% trans 'Ingredient Editor' %}
</div>
</div>
</a>
</div>
<div class="col-4">
<a href="{% url 'view_export' %}" class="p-1">
<div class="card p-0 no-gutters border-0">

View File

@@ -8,7 +8,13 @@
{% block content %}
<div class="row">
<div class="col col-md-12">
<h3>{% trans 'Ingredient Editor' %}</h3>
</div>
</div>
<div id="app">
<ingredient-editor-view></ingredient-editor-view>
</div>