mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
31 lines
696 B
HTML
31 lines
696 B
HTML
{% extends "base_firstboot.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block body_class %}
|
|
no-brand
|
|
{% 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 %}
|