{%extends 'base.html'%} {%block title%}History | Great API{%endblock%} {%block body%} {%include 'sidebar.html'%}
{%include 'navbar.html'%}
{%for item in history_items%}
{%if item.type == 'edit'%}

Item Edited

{{item.date}}
{%else%}

New Item Added

{{item.date}}
{%endif%}
{%endfor%}
{%endblock%}