FreedomBox/plinth/modules/diaspora/templates/diaspora-post-setup.html
Sunil Mohan Adapa e89e2b4a2a
*.html: Use SPDX license identifier
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2020-02-19 14:39:19 +02:00

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 %}