feat(static): create web origins for the static mirrors

This commit is contained in:
Iain Learmonth 2023-05-31 13:59:45 +01:00
parent 5d00dc8fe1
commit 51779b6cc3
5 changed files with 92 additions and 17 deletions

View file

@ -1,6 +1,6 @@
{% extends "base.html.j2" %}
{% from 'bootstrap5/form.html' import render_form %}
{% from "tables.html.j2" import static_table %}
{% from "tables.html.j2" import proxies_table, static_table %}
{% block content %}
<h1 class="h2 mt-3">Static Origins</h1>
@ -12,4 +12,9 @@
{{ render_form(form) }}
</div>
{% if proxies %}
<h3>Proxies</h3>
{{ proxies_table(proxies) }}
{% endif %}
{% endblock %}