{% extends "base.html" %} {% block content %}

Deleted Contacts

{% if not contacts %}

No deleted contacts.

{% else %} {% for c in contacts %} {% endfor %}
LabelNameCategoryPhoneDeleted AtActions
{{ c.label }} {{ c.name or '' }} {{ c.category or '' }} {{ c.phone or '' }} {{ c.deleted_at or '' }}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}