mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-13 10:30:16 +00:00
25 lines
763 B
HTML
25 lines
763 B
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block description %}
|
|
|
|
{% for paragraph in description %}
|
|
<p>{{ paragraph|safe }}</p>
|
|
{% endfor %}
|
|
|
|
<p>
|
|
{% url 'config:index' as index_url %}
|
|
{% blocktrans trimmed with domain_name=domain_name %}
|
|
The diaspora* pod domain is set to <b>{{ domain_name }}</b>. User
|
|
IDs will look like <i>username@diaspora.{{ domain_name }}</i><br/>
|
|
If the FreedomBox domain name is changed, all data of the users
|
|
registered with the previous podname wouldn't be accessible. <br/>
|
|
You can access the diaspora* pod at <a href="https://diaspora.{{domain_name}}"> diaspora.{{domain_name}} </a>
|
|
{% endblocktrans %}
|
|
</p>
|
|
{% endblock %}
|