Files
recipes/cookbook/templates/test.html
2021-01-11 22:00:23 +01:00

25 lines
482 B
HTML

{% 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 %}
{% block script %}
<script src="{% url 'javascript-catalog' %}"></script>
<script>
console.log(gettext('Error'))
</script>
{% render_bundle 'chunk-vendors' %}
{% render_bundle 'recipe_view' %}
{% endblock %}