{% extends "main.html" %} {% from 'bootstrap5/utils.html' import render_messages %} {% block title %}Submit an existing capture{% endblock %} {% block card %} {% endblock %} {% block content %}
Lookyloo
{{ render_messages(container=True, dismissible=True) }}
The capture must be a zipfile as you can get when calling /export on an existing capture.

[Experimental] It can be any file in HTTP Archive format, from any source (browser or any other tool)
The URL in the bowser at the end of the capture, it cannot always be guessed from the HAR file.
A screenshot of the rendered page.
The page rendered by the browser at the end of the capture, it is not in the HAR file.

{% if default_public %} By default, the capture is public. If you do not want that, untick the box at the top of the form. {% else %} By default, the capture is private (not visible on the index page). If you want it to be public tick the box at the top of the form. {% endif %}

{% endblock %} {% block scripts %} {{ super() }} {% endblock %}