mirror of https://github.com/CIRCL/lookyloo
65 lines
1.9 KiB
HTML
65 lines
1.9 KiB
HTML
{% extends "main.html" %}
|
|
|
|
{% from 'bootstrap/utils.html' import render_messages %}
|
|
|
|
{% block title %}Lookyloo{% endblock %}
|
|
|
|
{% block content %}
|
|
<center>
|
|
<a href="{{ url_for('scrape_web') }}">
|
|
<img src="{{ url_for('static', filename='lookyloo.jpeg') }}"
|
|
alt="Lookyloo" width="200">
|
|
</a>
|
|
</center>
|
|
<center>
|
|
<h2><a href="{{ url_for('scrape_web') }}">Start a new capture</a></h2>
|
|
<br><br>
|
|
{{ render_messages(container=True, dismissible=True) }}
|
|
</center>
|
|
|
|
<center>
|
|
<div class="table-responsive">
|
|
<table id="table" class="table" data-toggle="table" data-search="true">
|
|
<thead>
|
|
<tr>
|
|
<th data-width="200">Page</th>
|
|
<th data-width="80">Timestamp</th>
|
|
<th data-width="200">Redirects</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for uuid, page_title, date, time, url, redirects, incomplete_redirects in titles %}
|
|
<tr>
|
|
<td>
|
|
<p title="{{ page_title }}"><a href="{{ url_for('tree', tree_uuid=uuid) }}">{{ page_title }}</a></p>
|
|
<p title="{{ url }}">{{ url }}</p>
|
|
</td>
|
|
<td>{{ date }} {{ time }}</td>
|
|
<td>
|
|
{% if redirects %}
|
|
{% for r in redirects %}
|
|
<p title="{{ r }}">
|
|
{% if loop.previtem %}
|
|
{{ (" " * (loop.index *2) )|safe }}↪ {{ r }}
|
|
{%else%}
|
|
{{ r }}
|
|
{%endif%}
|
|
</p>
|
|
{% endfor %}
|
|
{% if incomplete_redirects %}
|
|
<a style="float: right;" href="{{ url_for('cache_tree', tree_uuid=uuid) }}">Unable to find the redirects, click here to build the tree</a>
|
|
{%else%}
|
|
<a style="float: right;" href="{{ url_for('redirects', tree_uuid=uuid) }}">Download redirects</a>
|
|
{%endif%}
|
|
{% else%}
|
|
No redirect
|
|
{%endif%}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</center>
|
|
{% endblock %}
|