mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-13 10:30:16 +00:00
20 lines
387 B
HTML
20 lines
387 B
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block configuration %}
|
|
{% for line in service_description %}
|
|
<p>{{ line|safe }}</p>
|
|
{% endfor %}
|
|
|
|
<p>
|
|
<a class="btn btn-primary" target="_blank" role="button"
|
|
href="{{ service_path }}">
|
|
{% trans "Launch" %}
|
|
</a>
|
|
</p>
|
|
{% endblock %}
|