{% extends "base.html" %} {% block title %}{% trans "page title" %}Import codebook{% endtrans %} | Taguette{% endblock %} {% block contents %}

{% trans "title" %}Import a codebook{% endtrans %}

{% trans %}Use this form to import an existing codebook into your project. Existing tags will not be deleted, new tags will be added alongside them.{% endtrans %}

{% for error in errors %}
{{ error }}
{% endfor %}

{% trans %}You are about to create the following tags:{% endtrans %}

{{ xsrf_form_html() }} {% for tag in tags %}
{% if tag.exists %} {% else %} {% endif %}
{% endfor %}
{% endblock %}