{% extends 'core/base.html' %} {% load i18n %} {% block content %}
{% csrf_token %}
{% if form.errors %}
{{ form.errors }}
{% endif %}

{% blocktrans with id=item.id %}Edit item #{{ id }}{% endblocktrans %}

×
{% trans "Type:" %} {{ item.get_kind_display }}
{% trans "Add tags" %}
{% for tag in tags %}{% endfor %}
{% include 'core/_format_toolbar.html' %}
{% if item.kind == 'todo' %}
{% for option in due_time_options %}
{% endif %}
{% if item.kind == 'link' %}{% endif %} {% if item.attachments.all %}
{% trans "Existing attachments" %}
{% for a in item.attachments.all %}{% endfor %}
{% endif %}
{% trans "Cancel" %}
{% endblock %}