Add templates/firewall_log.html
This commit is contained in:
parent
00a56d80b1
commit
adb02c4c48
1 changed files with 20 additions and 0 deletions
20
templates/firewall_log.html
Normal file
20
templates/firewall_log.html
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block title %}AS215085 - Router tools | Firewall Log{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<section>
|
||||||
|
<h2>Firewall Log for Rule {{ rule_number }}</h2>
|
||||||
|
<h5 class="text-muted">{{ ip_version }} / {{ ruleset_name }}</h5>
|
||||||
|
|
||||||
|
<div class="card my-4">
|
||||||
|
<div class="card-header">
|
||||||
|
Log Output
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<pre class="fw-log-output"><code>{{ log_data|safe }}</code></pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a class="btn btn-primary" onclick="window.close()">Back to Firewall Overview</a>
|
||||||
|
</section>
|
||||||
|
{% endblock %}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue