{{#ifCond this.length '==' 0}}
You currently have no upcoming reservations or expiring food
{{/ifCond}}
{{#each this}}
{{#ifCond this.type '==' "fridge_item"}}
Your group's {{this.item}} has expired!
{{/ifCond}}
{{#ifCond this.type '==' "reservation"}}
Reservation: {{ this.date }} {{ this.item }}
{{/ifCond}}
{{/each}}