{% extends 'core/base.html' %} {% load i18n %} {% block content %}
{% csrf_token %}

{% 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' %}
{% endif %}
{% if item.kind == 'link' %}{% endif %}
{% trans "Cancel" %}
{% endblock %}