{% extends "base.html" %} {% load i18n %} {% load static %} {% load custom_tags %} {% block title %}{% trans 'URL Import' %}{% endblock %} {% block extra_head %} {% include 'include/vue_base.html' %} {% endblock %} {% block content %}

{% trans 'Import' %}

{% trans 'Bookmark Me!' %}


{% trans 'Preview Recipe Data' %}

{% trans 'Drag recipe attributes from the right into the appropriate box below.' %}
{% trans 'Name' %}
{% trans 'Text dragged here will be appended to the name.'%}
[[recipe_json.name]]
{% trans 'Description' %}
{% trans 'Text dragged here will be appended to the description.'%}
[[recipe_json.description]]
{% trans 'Keywords' %}
{% trans 'Keywords dragged here will be appended to current list'%}
[[kw]]
{% trans 'Image' %}
Recipe Image
{% trans 'Servings' %}
[[recipe_json.servings]]
{% trans 'Prep Time' %}
[[recipe_json.prepTime]]
{% trans 'Cook Time' %}
[[recipe_json.cookTime]]
{% trans 'Ingredients' %}
{% trans 'Ingredients dragged here will be appended to current list.'%}
  • [[i.amount]]
    [[i.unit.text]]
    [[i.ingredient.text]]
    [[i.note]]
{% trans 'Instructions' %}
{% trans 'Recipe instructions dragged here will be appended to current instructions.'%}
[[recipe_json.recipeInstructions]]

{% trans 'Discovered Attributes' %}

{% trans 'Drag recipe attributes from below into the appropriate box on the left. Click any node to display its full properties.' %}
{% trans 'Blank Field' %}
{% trans 'Items dragged to Blank Field will be appended.'%}
[[blank_field]]
    [[txt]]
    Image
{% endblock %}