{% if recipe.pk %} {% trans "Edit Recipe:" %} {{ recipe.title }} {% else %} {% trans "New Recipe" %} {% endif %} {% csrf_token %} {{ form.title }} {% trans "Title" %} {% if form.title.errors %} {{ form.title.errors.0 }} {% endif %} {{ form.description }} {% trans "Description" %} {% if form.description.errors %} {{ form.description.errors.0 }} {% endif %} {{ form.ingredients }} {% trans "Ingredients" %} {{ form.instructions }} {% trans "Instructions" %} {{ form.image }} {% trans "Image" %} {% trans "Image Preview" %} {{ form.tags }} {% trans "Tags (comma separated)" %} {% trans "Cancel" %} save {% trans "Save Recipe" %}