working on a recipe view

This commit is contained in:
vabene1111
2021-01-11 18:31:06 +01:00
parent df0cfc3677
commit 34028587fc
9 changed files with 120 additions and 74 deletions

View File

@@ -1,15 +1,19 @@
{% extends "base.html" %}
{% load render_bundle from webpack_loader %}
{% load static %}
{% block title %}{{ recipe.name }}{% endblock %}
{% block content %}
<div id="app">
<recipe-view></recipe-view>
</div>
{% endblock %}
<div id="app">
<app></app>
</div>
{% render_bundle 'chunk-vendors' %}
{% render_bundle 'recipe_view' %}
<script>
</script>
{% block script %}
{% render_bundle 'chunk-vendors' %}
{% render_bundle 'recipe_view' %}
{% endblock %}