mirror of
https://github.com/simon987/od-database.git
synced 2025-12-13 06:49:02 +00:00
Initial commit
This commit is contained in:
29
templates/websites.html
Normal file
29
templates/websites.html
Normal file
@@ -0,0 +1,29 @@
|
||||
{% 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">
|
||||
<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 %}
|
||||
Reference in New Issue
Block a user