mirror of
https://github.com/simon987/od-database.git
synced 2025-04-16 17:06:46 +00:00
30 lines
941 B
HTML
30 lines
941 B
HTML
{% extends "layout.html" %}
|
|
{% set title = "OD-Database - Websites" %}
|
|
{% set current_page = "website" %}
|
|
|
|
|
|
{% block body %}
|
|
<div class="container">
|
|
<div class="card">
|
|
<div class="card-header">Last updated websites</div>
|
|
<div class="card-body">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Url</th>
|
|
<th>Last crawled</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
{% for website in websites %}
|
|
<tr>
|
|
<td><a title="Click for stats & link list" href="/website/{{ website[0] }}">{{ website[1] }}</a></td>
|
|
<td>{{ website[2] }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock body %}
|