{% extends "base_tools.html" %}
{% block title %}Alyssa and Ben's Wedding: Guest Counts by Venue{% endblock %}
{%block header %}
Guest Counts by Venue
{%endblock%}
{% block content %}
{%for vr in venue_reports %}
Venue: {{vr.venue}}
Current Estimate | {{vr.current_estimate}} |
Initial Estimate | {{vr.initial_estimate}} |
Status |
Responses |
Current EV |
Initial EV |
{%for vsr in vr.report_by_status %}
{{vsr.short_name}} |
{{vsr.rsvps.count}} |
{{vsr.current_ev}} |
{{vsr.initial_ev}} |
{%endfor%}
{%for vsr in vr.report_by_status %}
{{vsr.short_name}} ({{vsr.rsvps.count}}) |
{%ifequal vsr.short_name "Yes" %}
Food |
{%ifequal vr.venue.site "MA" %}
Bus |
{%endifequal%}
{%endifequal%}
{%ifequal vsr.short_name "No Information" %}
EV |
{%endifequal%}
{%ifequal vsr.short_name "Viewed but Blank" %}
EV |
{%endifequal%}
{%if vsr.any_response %}
{%ifnotequal vsr.short_name "Viewed but Blank" %}
{%for rsvp in vsr.rsvps %}
{{rsvp.guest.full_name}} |
{%ifequal vsr.short_name "Yes" %}
{%if rsvp.food_selection %}
{{rsvp.food_selection}}
{%endif%}
|
{%ifequal vr.venue.site "MA" %}
{%if rsvp.bus_selection %}
{%ifequal rsvp.bus_selection "none" %}
-
{%endifequal%}
{%ifnotequal rsvp.bus_selection "none" %}
{{rsvp.bus_selection}}
{%endifnotequal%}
{%endif%}
|
{%endifequal%}
{%endifequal%} {# Yes #}
{%endfor%}
{%endifnotequal%} {# Viewed but Blank #}
{%endif%}
{%ifequal vsr.short_name "No Information" %}
{%for ni in vr.no_information %}
{{ni.invitee}} |
{{ni.ev}} |
{%endfor%}
{%endifequal%}
{%ifequal vsr.short_name "Viewed but Blank" %}
{%for ni in vr.viewed_but_blank %}
{{ni.invitee}} |
{{ni.ev}} |
{%endfor%}
{%endifequal%}
{%endfor%}
|
{%endfor%}
{% endblock %}