{% extends "base.html" %} {% load static %} {% load custom_tags %} {% load i18n %} {% block title %}{% trans 'Meal Plan View' %}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ plan.meal_type }} {{ plan.date }}

{% trans 'Created by' %} {{ plan.created_by.get_user_name }} {% if plan.shared.all %}
{% trans 'Shared with' %} {% for x in plan.shared.all %}{{ x.get_user_name }}{% if not forloop.last %}, {% endif %} {% endfor %} {% endif %}


{% if plan.title %}

{{ plan.title }}

{% endif %} {% if plan.recipe %}
{% recipe_rating plan.recipe request.user as rating %}
{{ plan.recipe }} {{ rating|safe }}
{% recipe_last plan.recipe request.user as last_cooked %} {% if last_cooked %} {% trans 'Last cooked' %} {{ last_cooked|date }} {% else %} {% trans 'Never cooked before.' %} {% endif %} {% if plan.recipe.keywords %}

{% for x in plan.recipe.keywords.all %} {{ x }} {% endfor %} {% endif %}
{% endif %} {% if plan.note %}
{{ plan.note | markdown | safe }}
{% endif %} {% if same_day_plan %}

{% trans 'Other meals on this day' %}

{% endif %} {% endblock %}