{% extends 'base.html' %} {% block title %}Url Log{% endblock %} {% block content %}
    {% for x in urls %} {% set url = x.url|trim|e %}
  1. {% if x.title == 'Image' %} {% elif x.title == 'No Title Found' %} {{ url }} {% else %} {{ x.title|trim|e }} {% endif %} {{ x.time.strftime('%I:%M %p, %a, %b %d, %Y') }}
  2. {% endfor %}
{% endblock %}