9 lines
320 B
Text
9 lines
320 B
Text
|
{% extends "base.html.j2" %}
|
||
|
{% from "tables.html.j2" import bridgeconfs_table %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1 class="h2 mt-3">Tor Bridge Configurations</h1>
|
||
|
<a href="{{ url_for("portal.new_bridgeconf") }}" class="btn btn-success">Create new configuration</a>
|
||
|
{{ bridgeconfs_table(bridgeconfs) }}
|
||
|
{% endblock %}
|