mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
- Update the description of the app. Remove link to web interface at it is now in clients list. - Add showing running status of the service. - Use the new style for showing subsubmenus under the description of the application. - Don't use frames to show the interface. Let users launch that interface in a new window instead. - Use class based views for I2P service views. - Update description of the I2P service views. - Minor styling updates. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
17 lines
326 B
HTML
17 lines
326 B
HTML
{% extends "service-subsubmenu.html" %}
|
|
|
|
{% 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 %}
|