{% extends "base.html" %} {% block title %}Contacts{% endblock %} {% block content %}
{% if search or segment_filter %} Clear {% endif %}
{% for c in rows %} {% endfor %}
Name Organisation Email Segment Touch 1 Touch 2 Status
{{ c.name }} {{ c.organisation }} {{ c.email }} {{ c.segment }} {% if c._t1 == '✓' %} ✓ {{ c._t1_date }} {% else %} {% endif %} {% if c._t2 == '✓' %} ✓ {{ c._t2_date }} {% else %} {% endif %} {% if c._replied %} Replied {% elif c.skip == 'yes' %} Skip {% elif c._t1 == '✓' %} Sent {% else %} Pending {% endif %} {% if c._replied %} {% else %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}