{% extends "base.html" %} {% load render_bundle from webpack_loader %} {% load static %} {% load i18n %} {% load l10n %} {% load custom_tags %} {% block title %}{{ recipe.name }}{% endblock %} {% block extra_head %} {% if recipe.image %} {% endif %} {% if recipe.description %} {% endif %} {% endblock %} {% block content %} {% recipe_rating recipe request.user as rating %}
{% if request.user.userpreference.comments %}

{% trans 'Comments' %}
{% for c in comments %}
{{ c.updated_at }} {% trans 'by' %} {{ c.created_by.username }}
{{ c.text | urlize |linebreaks }}

{% endfor %} {% if request.user.is_authenticated %}
{% csrf_token %}
{% endif %} {% endif %} {% endblock %} {% block script %} {% if debug %} {% else %} {% endif %} {% render_bundle 'recipe_view' %} {% endblock %}