{% extends 'core/base.html' %} {% load querystring i18n %} {% block toolbar_filter %}
{% trans "Filter" %}
Todos{% if active_kind == 'todo' %} ×{% endif %} {% trans "Notes" %}{% if active_kind == 'note' %} ×{% endif %} Links{% if active_kind == 'link' %} ×{% endif %} {% trans "Due" %} {{ due_count }}{% if active_status == 'due' %} ×{% endif %} {% trans "Archive" %}{% if active_status == 'archive' %} ×{% endif %}
{% if q or active_tags %}
{% if q %}„{{ q }}”{% endif %}{% for tag_name in active_tags %} #{{ tag_name }}{% endfor %}
{% endif %}
{% for tag_name in active_tags %}{% endfor %} {% if active_tag_mode == 'all' %}{% endif %} {% if active_kind %}{% endif %} {% if active_status %}{% endif %}
{% if q %}×{% endif %}
{% if active_tags|length > 1 %}{% endif %}
{% for tag in tags %}{% if tag.name in active_tags %}#{{ tag.name }} ×{% else %}#{{ tag.name }}{% endif %}{% empty %}{% trans "No tags yet" %}{% endfor %}
{% endblock %} {% block content %}
{% trans "Task" %} {% trans "Note" %} Link Journal
{% csrf_token %}
{% trans "Inline editor is open; quick entry is disabled." %}
{% trans "Add tags" %}
{% for tag in composer_tags %}{% endfor %}
{{ form.content }}
{% include 'core/_format_toolbar.html' %}
{% trans "Editor" %}
{% if active_status == 'due' %} {% for item in due_now_items %}{% include 'core/_item.html' %}{% empty %}
{% trans "No due tasks." %}
{% endfor %} {% if upcoming_due_items %}
{% trans "Due in the next 7 days" %}
{% endif %} {% for item in upcoming_due_items %}{% include 'core/_item.html' %}{% endfor %} {% else %} {% for item in items %}{% include 'core/_item.html' %}{% empty %}
{% trans "Nothing here yet." %}
{% endfor %} {% endif %}
{% endblock %}