{% extends "base.html" %} {% block title %}callmem — {{ entity_type|capitalize }}s{% endblock %} {% block content %}

{{ entity_type|capitalize }}s

{% if entities %} {% for e in entities %} {% endfor %}
TitleContentStatusPriorityFlagsActions
{% if e.stale %}{{ e.title }}{% else %}{{ e.title }}{% endif %} {{ (e.content or "")[:60] }} {{ e.status or "-" }} {{ e.priority or "-" }} {% if e.pinned %}pinned{% endif %} {% if e.stale %} stale{% if e.staleness_reason %} · {{ e.staleness_reason }}{% endif %} {% endif %} {% if not e.pinned %} {% else %} {% endif %} {% if not e.stale %} {% else %} {% endif %}
{% else %}

No {{ entity_type }}s found.

{% endif %} {% endblock %}