{% extends "main.html" %} {% from 'bootstrap5/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
Changelog
(v{{version}})
{% if show_project_page %}
Project page
{% endif %}
Lookyloo

Web forensics tool


{% if current_user.is_authenticated %}

You are logged-in as {{ current_user.id }}, {% if show_hidden == false %} and you can check the hidden captures. {% else %} and you're looking at the hidden captures. Go back to the public captures. {% endif %}

{% endif %}
{{ render_messages(container=True, dismissible=True) }}

{% for uuid, page_title, datetime, url, 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 %} Download redirects {% else%} No redirect {%endif%}
{% endblock %}