FreedomBox/plinth/modules/first_boot/templates/firstboot_complete.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

35 lines
743 B
HTML

{% extends "base.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% 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 %}