mirror of https://github.com/CIRCL/lookyloo
96 lines
2.8 KiB
HTML
96 lines
2.8 KiB
HTML
{% extends "main.html" %}
|
|
|
|
{% from 'bootstrap/utils.html' import render_messages %}
|
|
{% from "macros.html" import shorten_string %}
|
|
|
|
{% block title %}Lookyloo{% endblock %}
|
|
|
|
{% block scripts %}
|
|
{{ super() }}
|
|
<script src='{{ url_for('static', filename='datatables.min.js') }}'></script>
|
|
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
$('#table').DataTable( {
|
|
"order": [[ 1, "desc" ]],
|
|
"pageLength": 50,
|
|
"columns": [
|
|
{ "orderable": false, "width": 400 },
|
|
{ "orderable": false, "width": 150 },
|
|
{ "orderable": false, "width": 400 }
|
|
],
|
|
"columnDefs": [{
|
|
"targets": 1,
|
|
"render": function ( data, type, row, meta ) {
|
|
let date = new Date(data);
|
|
return date.getFullYear() + '-' + (date.getMonth() + 1).toString().padStart(2, "0") + '-' + date.getDate().toString().padStart(2, "0") + ' ' + date.toTimeString();
|
|
}
|
|
}]
|
|
} );
|
|
});
|
|
</script>
|
|
|
|
{% endblock %}
|
|
|
|
{% block styles %}
|
|
{{ super() }}
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='datatables.min.css') }}">
|
|
{% 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>
|
|
|
|
<div class="table-responsive">
|
|
<table id="table" class="table" style="width:96%">
|
|
<thead>
|
|
<tr>
|
|
<th>Page</th>
|
|
<th>Timestamp</th>
|
|
<th>Redirects</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for uuid, page_title, datetime, 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 }}">{{ shorten_string(url, 150) }}</p>
|
|
</td>
|
|
<td>{{ datetime }}</td>
|
|
<td>
|
|
{% if redirects %}
|
|
{% for r in redirects %}
|
|
<p title="{{ r }}">
|
|
{% if loop.previtem %}
|
|
{{ (" " * (loop.index *2) )|safe }}↪ {{ shorten_string(r, 50) }}
|
|
{%else%}
|
|
{{ shorten_string(r, 50) }}
|
|
{%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>
|
|
{% endblock %}
|