lookyloo/website/web/templates/index.html

57 lines
1.4 KiB
HTML
Raw Normal View History

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>
<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>
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">
2020-02-03 22:25:48 +01:00
<thead>
<tr>
<th data-width="200">Page</th>
<th data-width="80">Timestamp</th>
<th data-width="200">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>
2020-02-10 18:09:40 +01:00
<p title="{{ page_title }}"><a href="{{ url_for('tree', tree_uuid=uuid) }}">{{ page_title }}</a></p>
<p title="{{ url }}">{{ url }}</div>
2020-02-03 22:25:48 +01:00
</td>
<td>{{ date }} {{ time }}</td>
2020-02-03 22:25:48 +01:00
<td>
{% if redirects %}
{% for r in redirects %}
<p title="{{ r }}">
{% if loop.previtem %}
{{ ("&nbsp;" * (loop.index *2) )|safe }}↪ {{ r }}
{%else%}
2020-02-04 19:15:44 +01:00
{{ r }}
{%endif%}
</p>
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 %}