46 lines
1.6 KiB
HTML
46 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>File Access Log</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; margin: 20px; }
|
|
table, th, td { border: 1px solid #ccc; border-collapse: collapse; padding: 8px; }
|
|
th { background-color: #f2f2f2; }
|
|
.btn { margin: 5px; padding: 8px 12px; text-decoration: none; background-color: #4CAF50; color: white; border-radius: 4px; }
|
|
.btn:hover { background-color: #45a049; }
|
|
.box { margin: 15px 0; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>File Access Log ({{ timeframe }})</h1>
|
|
<div class="box">
|
|
<a href="{{ url_for('access_log', timeframe='today') }}" class="btn">Today</a>
|
|
<a href="{{ url_for('access_log', timeframe='7days') }}" class="btn">Last 7 Days</a>
|
|
<a href="{{ url_for('access_log', timeframe='30days') }}" class="btn">Last 30 Days</a>
|
|
<a href="{{ url_for('access_log', timeframe='365days') }}" class="btn">Last 365 Days</a>
|
|
</div>
|
|
<div class="box">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>File Path</th>
|
|
<th>Access Count</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for row in rows %}
|
|
<tr>
|
|
<td>{{ row[0] }}</td>
|
|
<td>{{ row[1] }}</td>
|
|
</tr>
|
|
{% else %}
|
|
<tr>
|
|
<td colspan="2">No data available for the selected timeframe.</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html> |