{% extends "base.html" %} {% block title %}Rolodex · Delphi Database{% endblock %} {% block content %}

Rolodex

{% if total and total > 0 %} Showing {{ start_index }}–{{ end_index }} of {{ total }} {% else %} No results {% endif %}
{% if enable_bulk %} {% endif %} {% if clients and clients|length > 0 %} {% for c in clients %} {% if enable_bulk %} {% endif %} {% endfor %} {% else %} {% endif %}
Name Company Address City State ZIP Phones Actions
{{ c.last_name or '' }}, {{ c.first_name or '' }} {{ c.company or '' }} {{ c.address or '' }} {{ c.city or '' }} {{ c.state or '' }} {{ c.zip_code or '' }} {% if c.phones and c.phones|length > 0 %} {% for p in c.phones[:3] %} {{ p.phone_number }} {% endfor %} {% else %} {% endif %} View
No clients found.
{% if enable_bulk %}
Phone Book CSV (Current Filter)
{% endif %}
{% if total_pages and total_pages > 1 %} {% endif %}
{% block extra_scripts %} {% endblock %} {% endblock %}