You've already forked snikket-web-portal
Dependency versions are generally not useful, unless you are developing or otherwise outside of a normal release situation: If you are on a normal release, we can figure out the dep versions by looking at the docker image. To reduce the amount of information displayed and the amount of information which needs to be conveyed in case of problems, we only show the web portal and prosody versions to admins, unless debug mode is enabled. The behaviour that versions are only shown to logged in admins (unless debug mode is enabled) remains unchanged. Fixes #115.
38 lines
2.4 KiB
HTML
38 lines
2.4 KiB
HTML
{% extends "base.html" %}
|
||
{% from "library.j2" import standard_button %}
|
||
{% block head_lead %}
|
||
<title>{% trans %}About Snikket{% endtrans %}</title>
|
||
{% endblock %}
|
||
{% block body %}
|
||
<main>
|
||
<div class="box el-2">
|
||
<h1>{% trans %}About Snikket{% endtrans %}</h1>
|
||
<p>{% trans snikket_url="https://snikket.org" %}To learn more about Snikket, visit the <a href="{{ snikket_url}}">Snikket website</a>.{% endtrans %}</p>
|
||
<h2>{% trans %}About this Service{% endtrans %}</h2>
|
||
<p>{% trans site_name=config["SITE_NAME"] %}This is the Snikket service <em>{{ site_name }}</em>.{% endtrans %}</p>
|
||
<h3>{% trans %}Licenses{% endtrans %}</h3>
|
||
<p>{% trans agpl_url="https://www.gnu.org/licenses/agpl.html" %}The web portal software is licensed under the terms of the <a href="{{ agpl_url }}">Affero GNU General Public License, version 3.0 or later</a>. The full terms of the license can be reviewed using the aforementioned link.{% endtrans %}</p>
|
||
<p>{% trans source_url="https://github.com/snikket-im/snikket-web-portal/" %}The source code of the web portal can be downloaded and viewed in <a href="{{ source_url }}">its GitHub repository</a>.{% endtrans %}</p>
|
||
<p>{% trans source_url="https://material.io/resources/icons/", apache20_url="https://www.apache.org/licenses/LICENSE-2.0.txt" %}The icons used in the web portal are <a href="{{ source_url }}">Google’s Material Icons</a>, made available by Google under the terms of the <a href="{{ apache20_url }}">Apache 2.0 License</a>.{% endtrans %}</p>
|
||
<h3>{% trans %}Trademarks{% endtrans %}</h3>
|
||
<p>{% trans trademarks_url="https://snikket.org/about/trademarks/" %}“Snikket” and the parrot logo are trademarks of Snikket Community Interest Company. For more information about the trademarks, visit the <a href="{{ trademarks_url }}">Snikket Trademarks information page</a>.{% endtrans %}
|
||
<h3>{% trans %}Software Versions{% endtrans %}</h3>
|
||
<pre>Domain: {{ config["SNIKKET_DOMAIN"] }}
|
||
Web Portal{% if version %} ({{ version }}){% endif %}
|
||
{%- if core_versions -%}
|
||
{% for name, version in core_versions.items() %}
|
||
{{ name }} ({{ version }}){% endfor %}
|
||
{%- endif -%}
|
||
{%- if extra_versions -%}
|
||
{% for name, version in extra_versions.items() %}
|
||
{{ name }} ({{ version }}){% endfor %}
|
||
{%- endif -%}</pre>
|
||
<p>
|
||
{%- call standard_button("back", url_for("index"), class="primary") -%}
|
||
{% trans %}Back to the main page{% endtrans %}
|
||
{%- endcall -%}
|
||
</p>
|
||
</div>
|
||
</main>
|
||
{% endblock %}
|