{% 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 %} {%endfor%}

Venue: {{vr.venue}}

Current Estimate{{vr.current_estimate}}
Initial Estimate{{vr.initial_estimate}}

{%for vsr in vr.report_by_status %} {%endfor%}
Status Responses Current EV Initial EV
{{vsr.short_name}} {{vsr.rsvps.count}} {{vsr.current_ev}} {{vsr.initial_ev}}
{%for vsr in vr.report_by_status %}
{%ifequal vsr.short_name "Yes" %} {%ifequal vr.venue.site "MA" %} {%endifequal%} {%endifequal%} {%ifequal vsr.short_name "No Information" %} {%endifequal%} {%ifequal vsr.short_name "Viewed but Blank" %} {%endifequal%} {%if vsr.any_response %} {%ifnotequal vsr.short_name "Viewed but Blank" %} {%for rsvp in vsr.rsvps %} {%ifequal vsr.short_name "Yes" %} {%ifequal vr.venue.site "MA" %} {%endifequal%} {%endifequal%} {# Yes #} {%endfor%} {%endifnotequal%} {# Viewed but Blank #} {%endif%} {%ifequal vsr.short_name "No Information" %} {%for ni in vr.no_information %} {%endfor%} {%endifequal%} {%ifequal vsr.short_name "Viewed but Blank" %} {%for ni in vr.viewed_but_blank %} {%endfor%} {%endifequal%}
{{vsr.short_name}} ({{vsr.rsvps.count}})FoodBusEVEV
{{rsvp.guest.full_name}} {%if rsvp.food_selection %} {{rsvp.food_selection}} {%endif%} {%if rsvp.bus_selection %} {%ifequal rsvp.bus_selection "none" %} - {%endifequal%} {%ifnotequal rsvp.bus_selection "none" %} {{rsvp.bus_selection}} {%endifnotequal%} {%endif%}
{{ni.invitee}} {{ni.ev}}
{{ni.invitee}} {{ni.ev}}
{%endfor%}
{% endblock %}