mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
27 lines
682 B
HTML
27 lines
682 B
HTML
{% extends frame.html %}
|
|
{% block body %}
|
|
<form style="float: right" method="POST" action="/log/clear">
|
|
<button type="submit" class="btn">clear</button>
|
|
</form>
|
|
<h1> Logs </h1>
|
|
<hr>
|
|
|
|
<table class="table table-striped table-condensed">
|
|
<thead>
|
|
<tr>
|
|
<th>id</th>
|
|
<th>url</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for i in log %}
|
|
<tr>
|
|
<td>{{ i["id"] }}</td>
|
|
<td><a href="/log/{{ i["id"] }}">{{ i["request"]["full_url"] }}</a></td>
|
|
</tr>
|
|
{% end %}
|
|
</tbody>
|
|
</table>
|
|
{% end %}
|
|
|