{% extends "admin/admin_base.html" %} {% load i18n static %} {% block admin_title %}{{ title }}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
{% csrf_token %} {{ form.rotation }} {{ form.image_data }}
{{ form.title }} {% if form.title.errors %}{{ form.title.errors|striptags }}{% endif %}
{{ form.tags_string }} {% if form.tags_string.errors %}{{ form.tags_string.errors|striptags }}{% endif %} {% trans "Separate tags with commas. New tags will be created automatically." %}
{{ form.uploaded_by }} {% if form.uploaded_by.errors %}{{ form.uploaded_by.errors|striptags }}{% endif %}
{{ form.price }} {% if form.price.errors %}{{ form.price.errors|striptags }}{% endif %}
{{ form.max_daily_orders }} {% if form.max_daily_orders.errors %}{{ form.max_daily_orders.errors|striptags }}{% endif %}
description
{% trans "Description" %}
{{ form.description }}
{% if form.description.errors %}{{ form.description.errors|striptags }}{% endif %}
{% trans "Recipe Image" %}
{% if recipe.image %} {% else %}
image
{% endif %}
{{ form.image }} publish
{% if form.image.errors %}{{ form.image.errors|striptags }}{% endif %}
shopping_cart
{% trans "Ingredients" %}
{{ form.ingredients }}
{% if form.ingredients.errors %}{{ form.ingredients.errors|striptags }}{% endif %}
list
{% trans "Instructions" %}
{{ form.instructions }}
{% if form.instructions.errors %}{{ form.instructions.errors|striptags }}{% endif %}
{% trans "Edit Image" %}
{% endblock %} {% block admin_scripts %} {% endblock %}