{% extends "admin/base_site.html" %} {% block content_title %}Users requiring followups{% endblock %} {% block content %}
{% if users %} {% for i in users %} {% endfor %}
UserLast 3 contact records
{{i}}
    {% for r in i.contactrecord_set.all|slice:":3" %}
  • {{r.reason}} {{r.added}}
  • {% endfor %}
Contact history
{% else %}

No users require followup

{% endif %}

This table will list users who have been contacted in a manner for which a response would be expected (e.g. a recruitment letter) but have not yet responded (or, at any rate, a contact record has not been made.

If you want to remove the participant from this listing, the simplest way would be to add a contact record indicating that no further followup is needed.

{% endblock %}