Files
recipes/cookbook/templates/test.html
2022-02-19 09:34:42 +01:00

33 lines
645 B
HTML

{% extends "base.html" %}
{% load render_bundle from webpack_loader %}
{% load static %}
{% load i18n %}
{% load l10n %}
{% block title %}Test{% endblock %}
{% block content_fluid %}
<div id="app">
<import-view></import-view>
</div>
{% endblock %}
{% block script %}
{% if debug %}
<script src="{% url 'js_reverse' %}"></script>
{% else %}
<script src="{% static 'django_js_reverse/reverse.js' %}"></script>
{% endif %}
<script type="application/javascript">
window.CUSTOM_LOCALE = '{{ request.LANGUAGE_CODE }}'
</script>
{% render_bundle 'import_view' %}
{% endblock %}