mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
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>
31 lines
580 B
HTML
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 %}
|