Fix github security audits
[herouter.git] / templates / dash.html
blobd1e84814e4cf9f9a01cda5598d495fd92061068c
1 {% extends "base.html" %}
2 {% block title %}Hub Dash{% endblock %}
3 {% block head %}
4 {{ super() }}
5 {% endblock %}
6 {% block content %}
7 <h1>Hub Dash</h1>
8 <table class="table">
9 <thead>
10 <tr>
11 <th>Source</th>
12 <th>Destination</th>
13 </tr>
14 </thead>
15 <tbody>
16 {% for host in redirects %}
17 <tr>
18 <td>{{ host['source'] }}</td>
19 <td><a href="{{ host['destination'] }}">{{ host['destination'] }}</a></td>
20 </tr>
21 {% endfor %}
22 </tbody>
23 </table>
24 {% endblock %}