FreedomBox/plinth/templates/first_setup.html
Sunil Mohan Adapa 0b1219a90c
first_setup: Fix regression with logo not showing
Logo is not shown when first setup is running in the background and the first
setup busy page is shown. This is a regression when PNG logos were moved to a
different folder.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
2020-05-17 17:36:55 -04: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.svg' %}"
alt="{{ box_name }}" width="640"/>
</p>
{% endblock %}