{% extends "main.html" %} {% from 'bootstrap/utils.html' import render_messages %} {% from "macros.html" import shorten_string %} {% block title %}Lookyloo{% endblock %} {% block card %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block content %}
Documentation
Project page
Lookyloo

Web forensics tool


Start a new capture

{{ render_messages(container=True, dismissible=True) }}
{% for uuid, page_title, datetime, url, redirects, incomplete_redirects in titles %} {% endfor %}
Page Timestamp Redirects

{{ page_title }}

{{ shorten_string(url, 50, with_title=True) }}
{{ datetime }} {% if redirects %} {% for r in redirects %}

{% if loop.previtem %} {{ (" " * (loop.index *2) )|safe }}↪ {{ shorten_string(r, 50) }} {%else%} {{ shorten_string(r, 50) }} {%endif%}

{% endfor %} {% if incomplete_redirects %} Unable to find the redirects, click here to build the tree {%else%} Download redirects {%endif%} {% else%} No redirect {%endif%}
{% endblock %}