mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
46 lines
1.1 KiB
HTML
46 lines
1.1 KiB
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
{% load bootstrap %}
|
|
|
|
{% block description %}
|
|
|
|
{% for paragraph in description %}
|
|
<p>{{ paragraph|safe }}</p>
|
|
{% endfor %}
|
|
|
|
<p>
|
|
{% url 'config:index' as index_url %}
|
|
{% if domainname %}
|
|
{% blocktrans trimmed with domainname=domainname %}
|
|
Your XMPP server domain is set to <b>{{ domainname }}</b>. User
|
|
IDs will look like <i>username@{{ domainname }}</i>. You
|
|
can setup your domain on the system
|
|
<a href="{{ index_url }}">Configure</a> page.
|
|
{% endblocktrans %}
|
|
{% else %}
|
|
Your XMPP server domain is not set. You can setup your domain on
|
|
the system <a href="{{ index_url }}">Configure</a> page.
|
|
{% endif %}
|
|
</p>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
{% block configuration %}
|
|
|
|
<h3>{% trans "Configuration" %}</h3>
|
|
|
|
<form id="app-form" class="form form-configuration" method="post">
|
|
{% csrf_token %}
|
|
|
|
{{ form|bootstrap }}
|
|
|
|
<input type="submit" class="btn btn-primary"
|
|
value="{% trans "Update setup" %}"/>
|
|
</form>
|
|
{% endblock %}
|