{% if tasks %}
Due | Title | Public | Categories | Done |
---|---|---|---|---|
{% if note.task.date_due %} {{note.task.date_due|date:"M. d"}} {% else %} – {% endif %} | {{note.title}} | {% if note.public %} ⁕ {% endif %} | {% for category in note.categories.all %} #{{category.name}} {% endfor%} | {% if note.task.done %} ✕ {% else %} ✓ {% endif %} |
No task to be shown.
{% endif %}