mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
152 lines
4.0 KiB
HTML
152 lines
4.0 KiB
HTML
{% extends "simple_app.html" %}
|
|
{% comment %}
|
|
#
|
|
# This file is part of FreedomBox.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block page_head %}
|
|
|
|
{% if config_running %}
|
|
<noscript>
|
|
<meta http-equiv="refresh" content="3" />
|
|
</noscript>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
{% block configuration %}
|
|
|
|
{% include "clients.html" with clients=clients %}
|
|
|
|
<h3>{% trans "Status" %}</h3>
|
|
|
|
{% if config_running %}
|
|
|
|
<p class="running-status-parent">
|
|
<span class="running-status loading"></span>
|
|
{% trans "Tor configuration is being updated" %}
|
|
</p>
|
|
|
|
{% else %}
|
|
|
|
<p class="running-status-parent">
|
|
{% if status.is_running %}
|
|
<span class="running-status active"></span>
|
|
{% trans "Tor is running" %}
|
|
{% else %}
|
|
<span class="running-status inactive"></span>
|
|
{% trans "Tor is not running" %}
|
|
{% endif %}
|
|
</p>
|
|
|
|
{% include "diagnostics_button.html" with module="tor" enabled=status.enabled %}
|
|
|
|
{% if status.hs_enabled %}
|
|
<table class="table table-bordered table-condensed table-striped tor-hs">
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans "Hidden Service" %}</th>
|
|
<th>{% trans "Status" %}</th>
|
|
<th>{% trans "Ports" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td class="tor-hs-hostname">{{ status.hs_hostname }}</td>
|
|
<td class="tor-hs-status">{{ status.hs_status }}</td>
|
|
<td class="tor-hs-services">
|
|
{{ status.hs_services|join:', ' }}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
{% endif %}
|
|
|
|
{% include "internal-zone.html" %}
|
|
|
|
<h3>{% trans "Configuration" %}</h3>
|
|
|
|
<form class="form form-configuration" method="post">
|
|
{% csrf_token %}
|
|
|
|
{{ form|bootstrap }}
|
|
|
|
<input type="submit" class="btn btn-primary btn-md"
|
|
value="{% trans "Update setup" %}"/>
|
|
</form>
|
|
|
|
{% if status.relay_enabled %}
|
|
<h3>{% trans "Relay" %}</h3>
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
If your {{ box_name }} is behind a router or firewall, you should
|
|
make sure the following ports are open, and port-forwarded, if
|
|
necessary:
|
|
{% endblocktrans %}
|
|
</p>
|
|
<div class="row">
|
|
<div class="col-sm-6">
|
|
<table class="table table-bordered table-condensed table-striped tor-relay-ports">
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans "Service" %}</th>
|
|
<th>{% trans "Port" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for name, port in status.ports.items %}
|
|
<tr>
|
|
<td class="tor-relay-port-name">{{ name }}</td>
|
|
<td class="tor-relay-port-number">{{ port }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<h3>{% trans "SOCKS" %}</h3>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
A Tor SOCKS port is available on your {{ box_name }} on TCP port
|
|
9050.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
{% block page_js %}
|
|
|
|
<script type="text/javascript" src="{% static 'tor/tor.js' %}"></script>
|
|
|
|
{% if config_running %}
|
|
<script type="text/javascript" src="{% static 'theme/js/refresh.js' %}"></script>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|