mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
Fixes: #888. - Suggest all the steps that a typical user should likely take. - Custom styling to make the page look good. - Open the links in new windows as this page can't be reached again. - Add a button for software updates as this can be done easily and the most important step. Tests: - Trigger first setup by removing plinth.sqlite3. Notice the improved setup complete page. Text and icons are as expected. Links work and open in a new window. Clicking on 'Update now' button opens a page to software updates with manual upgrade triggered. - Mobile view looks good. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
87 lines
2.5 KiB
HTML
87 lines
2.5 KiB
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>{% trans "Setup Complete! Next Steps:" %}</h2>
|
|
|
|
<ol class='next-steps'>
|
|
<li>
|
|
<div class="app-icon fa fa-refresh"></div>
|
|
<div class="step-text">
|
|
{% url 'upgrades:index' as upgrades_url %}
|
|
{% blocktrans trimmed %}
|
|
Automatic <a href="{{ upgrades_url }}" target="_blank">software
|
|
update</a> runs daily by default. For the first time, manually run
|
|
it now.
|
|
{% endblocktrans %}
|
|
<form class="form" method="post" target="_blank"
|
|
action="{% url 'upgrades:upgrade' %}">
|
|
{% csrf_token %}
|
|
<input type="submit" class="btn btn-default"
|
|
value="{% trans "Update now" %}"/>
|
|
</form>
|
|
</div>
|
|
</li>
|
|
|
|
<li>
|
|
<div class="app-icon fa fa-eye-slash"></div>
|
|
<div class="step-text">
|
|
{% url 'privacy:index' as privacy_url %}
|
|
{% blocktrans trimmed %}
|
|
Review <a href="{{ privacy_url }}" target="_blank">privacy options</a>.
|
|
{% endblocktrans %}
|
|
</div>
|
|
</li>
|
|
|
|
<li>
|
|
<div class="app-icon fa fa-signal"></div>
|
|
<div class="step-text">
|
|
{% url 'networks:index' as networks_url %}
|
|
{% blocktrans trimmed %}
|
|
Review and setup <a href="{{ networks_url }}" target="_blank">network
|
|
connections</a>. Change the default Wi-Fi password, if applicable.
|
|
{% endblocktrans %}
|
|
</div>
|
|
</li>
|
|
|
|
<li>
|
|
<div class="app-icon fa fa-tags"></div>
|
|
<div class="step-text">
|
|
{% url 'names:index' as names_url %}
|
|
{% blocktrans trimmed %}
|
|
Configure a <a href="{{ names_url }}" target="_blank">domain name</a>.
|
|
{% endblocktrans %}
|
|
</div>
|
|
</li>
|
|
|
|
<li>
|
|
<div class="app-icon fa fa-files-o"></div>
|
|
<div class="step-text">
|
|
{% url 'backups:index' as backups_url %}
|
|
{% blocktrans trimmed %}
|
|
Configure and schedule remote
|
|
<a href="{{ backups_url }}" target="_blank">backups</a>.
|
|
{% endblocktrans %}
|
|
</div>
|
|
</li>
|
|
|
|
<li>
|
|
<div class="app-icon fa fa-th"></div>
|
|
<div class="step-text">
|
|
{% url 'apps' as apps_url %}
|
|
{% blocktrans trimmed %}
|
|
Put {{ box_name }} to use by installing
|
|
<a href="{{ apps_url }}" target="_blank">apps</a>.
|
|
{% endblocktrans %}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
|
|
{% endblock %}
|