{% if records %}
{#
ID
#}
Timestamp
Method
URL
Details
{% for log in records %}
{#
{{log.id}}
#}
{{log.timestamp.strftime('%d-%m-%Y %H:%M:%S')}}
{{log.method}}
{{log.url}}
Show more
{% endfor %}
Delete All Records
{% else %}
No data recorded yet.
{% endif %}