FreedomBox/plinth/modules/first_boot/templates/firstboot_complete.html
Sunil Mohan Adapa e43df173ca
first_boot: Remove unnecessary content sizing
Signed-off-by: Manish Tripathy <manisht@thougtworks.com>
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
2018-06-18 20:24:07 +05:30

50 lines
1.4 KiB
HTML

{% extends "base.html" %}
{% comment %}
#
# This file is part of FreedomBox.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
{% block content %}
<h2>{% trans "Setup Complete!" %}</h2>
<p>
{% blocktrans trimmed %}
Without any apps, your {{ box_name }} cannot do very much.
{% endblocktrans %}
</p>
<div class="text-center">
<a class="btn btn-lg btn-primary" href="{% url 'apps' %}">
{% trans "Install Apps" %}</a>
</div>
<p>
<p>
{% url 'networks:index' as networks_url %}
{% blocktrans trimmed %}
You may want to check the <a href="{{ networks_url }}">network
setup</a> and modify it if necessary.
{% endblocktrans %}
</p>
</p>
{% endblock %}