{% extends "main.html" %} {% load static %} {% block content %}

Edit Prospecting List

{% csrf_token %}
{% for item in list_items %} {% empty %} {% endfor %}
Contact Needs Attention? Comments
{{ item.addressbook.first_name }} {{ item.addressbook.last_name }} {% if item.comments.all %}
    {% for comment in item.comments.all %}
  • {{ comment.content }}
  • {% endfor %}
{% else %} No comments {% endif %}
No contacts yet.
{% endblock content %}