{% extends 'base.html'%} {% block body_block%}
{%if shop%}
Daily Monthly Yearly All

{{shop.name}}{{shop.location}}


{%for item in shop.saleentry_set.all%} {%endfor%}
Description Amount Notes Datetime
{{item.description}} {{item.amount}} {{item.notes}} {{item.timestamp|date:'d, M Y H:i:s'}}

{%else%}
No shop received
{%endif%}
{% endblock %}