27 lines
852 B
Django/Jinja
27 lines
852 B
Django/Jinja
<html>
|
|
<head>
|
|
<title>Bypass Censorship</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h2>Blocked Today</h2>
|
|
<table class="table table-striped">
|
|
<tr>
|
|
<th>Origin</th>
|
|
<th>Blocked</th>
|
|
<th>Detection Source</th>
|
|
<th>Lifetime</th>
|
|
</tr>
|
|
{% for block in blocked_today %}
|
|
<tr>
|
|
<td><a href="https://{{ block.domain_name }}">{{ block.domain_name }}</a> ({{ block.description }})</td>
|
|
<td>{{ block.deprecated }}</td>
|
|
<td>{{ block.deprecation_reason }}</td>
|
|
<td>{{ block.deprecated - block.added }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|