2017-07-23 19:56:51 +02:00
|
|
|
{% extends "main.html" %}
|
|
|
|
|
2020-02-03 18:30:41 +01:00
|
|
|
{% block title %}Lookyloo{% endblock %}
|
2017-07-23 19:56:51 +02:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<center>
|
2020-02-03 18:30:41 +01:00
|
|
|
<h2><a href="{{ url_for('scrape_web') }}">Use Lookyloo to scrape a page</a></h2>
|
2019-06-28 12:08:35 +02:00
|
|
|
</br></br>
|
2017-07-23 19:56:51 +02:00
|
|
|
</center>
|
2020-02-03 18:30:41 +01:00
|
|
|
|
2020-02-06 17:25:21 +01:00
|
|
|
<center>
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table id="table" class="table" data-toggle="table" data-search="true" data-show-columns="true">
|
2020-02-03 22:25:48 +01:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2020-02-06 17:25:21 +01:00
|
|
|
<th data-field="title" data-width="200">Page title</th>
|
|
|
|
<th data-flield="url" data-width="75">Initial URL</th>
|
|
|
|
<th data-field="redirects" data-width="75">Initial redirects</th>
|
2020-02-04 19:15:44 +01:00
|
|
|
</tr>
|
2020-02-03 18:30:41 +01:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2020-02-03 22:25:48 +01:00
|
|
|
{% for uuid, page_title, date, time, url, redirects in titles %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="{{ url_for('tree', tree_uuid=uuid) }}">{{ page_title }}</a>
|
|
|
|
<div id="timestamp"> <b>{{ date }}</b> {{ time }}</div>
|
|
|
|
</td>
|
|
|
|
<td>{{ url }}</td>
|
|
|
|
<td>
|
|
|
|
{% if redirects %}
|
|
|
|
{% for r in redirects %}
|
2020-02-04 19:15:44 +01:00
|
|
|
{{ r }}
|
|
|
|
{% if loop.nextitem %}
|
|
|
|
</br>{{ (" " * (loop.index *2) )|safe }}↪
|
|
|
|
{%endif%}
|
|
|
|
|
2020-02-03 22:25:48 +01:00
|
|
|
{% endfor %}
|
|
|
|
{% else%}
|
|
|
|
No redirect
|
|
|
|
{%endif%}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
2020-02-03 18:30:41 +01:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2020-02-06 17:25:21 +01:00
|
|
|
</div>
|
|
|
|
</center>
|
2017-07-23 19:56:51 +02:00
|
|
|
{% endblock %}
|