{% extends "base_tools.html" %} {% block title %}Alyssa and Ben's Wedding: Admin Report{% endblock %} {%block header %}

Responses order by last update

{%endblock%} {% block content %} {% for inv in invitees %} {% if inv.last_visited %} {% for g in inv.guest_set.all %} {%if forloop.first %} {% endif %} {% endfor %} {% endif %} {# last_visited #} {% endfor %}
Guest RSVP Comments When
{{ inv.full_name }} Updated: {{ inv.last_updated|timesince }} ago
Visited: {{ inv.last_visited|timesince }} ago
{{ g.full_name }} {% for r in g.rsvp_set.all %} {{ r.venue.site }}: {{r.status}}
{% endfor %}
{% for c in inv.comment_set.all %} {%if not forloop.first %}
{% endif %} {{c.text}} [{{ c.type }}]
{% endfor %}
{% endblock %}