{{#ifCond this.length '==' 0}}
There are no fridge items here
{{/ifCond}}
{{#each this}}
{{#ifCond this.expiration_date '==' -1}}
{{ this.item }} has expired
{{/ifCond}}
{{#ifCond this.expiration_date '==' 0}}
{{ this.item }} expires today
{{/ifCond}}
{{#ifCond this.expiration_date '>' 0}}
Expires in {{ this.expiration_date }} days
{{#ifCond this.sharable '==' "yes"}}
Shared by {{ this.owner }}
{{/ifCond}}
{{/ifCond}}
{{/each}}