Joseph Nuthalapati 6e93633584
coturn: Minor refactor view to use utility to generate URIs
Sunil:
 - Join the string in the template instead of the view.

Signed-off-by: Joseph Nuthalapati <njoseph@riseup.net>
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
2021-02-28 16:28:46 -08:00

31 lines
580 B
HTML

{% extends "app.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
{% block status %}
{{ block.super }}
<h3>Status</h3>
<p>
{% blocktrans trimmed %}
Use the following URLs to configure your communication server:
{% endblocktrans %}
<pre>{% for uri in config.uris %}{{ uri }}
{% endfor %}</pre>
</p>
<p>
{% blocktrans trimmed %}
Use the following shared authentication secret:
{% endblocktrans %}
<pre>{{ config.shared_secret }}</pre>
</p>
{% endblock %}