FreedomBox/plinth/templates/first_setup.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

37 lines
815 B
HTML

{% extends "base_firstboot.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
{% load static %}
{% block page_head %}
<style type="text/css">
a.navbar-brand {
display: none;
}
</style>
<meta http-equiv="refresh" content="3" />
{% endblock %}
{% block content %}
{% if is_first_setup_running %}
<div class="alert alert-warning" role="alert">
{% blocktrans trimmed %}
Please wait for {{ box_name }} to finish installation.
You can start using your {{ box_name }} once it is done.
{% endblocktrans %}
</div>
{% endif %}
<p class="text-center">
<img src="{% static 'theme/img/FreedomBox-logo-standard.png' %}"
alt="{{ box_name }}" width="640"/>
</p>
{% endblock %}