Prachi c8eb714562
Separate out the short description and app name
Signed-off-by: Prachi <prachi@swecha.net>
Reviewed-by: Joseph Nuthalapati <njoseph@thoughtworks.com>
2017-08-21 11:17:08 +05:30

124 lines
4.1 KiB
HTML

{% extends "base.html" %}
{% comment %}
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
{% block page_head %}
{% if setup_helper.current_operation %}
<meta http-equiv="refresh" content="3" />
{% endif %}
{% endblock %}
{% block content %}
<h2>{% trans "Installation" %}: {{ setup_helper.module.short_description }} ({{ setup_helper.module.name }})</h2>
{% for paragraph in setup_helper.module.description %}
<p>{{ paragraph|safe }}</p>
{% endfor %}
{% if not setup_helper.current_operation %}
{% if setup_helper.get_state == 'needs-setup' %}
<p>
{% blocktrans trimmed %}
Install this application?
{% endblocktrans %}
</p>
<form action="" method="post">
{% csrf_token %}
{% if package_manager_is_busy %}
<div class="alert alert-warning" role="alert">
{% blocktrans trimmed %}
Another installation or upgrade is already running.
Please wait for a few moments before trying again.
{% endblocktrans %}
</div>
<input type="submit" class="btn btn-md btn-primary"
disabled="disabled" value="{% trans "Install" %}" />
{% else %}
<input type="submit" class="btn btn-md btn-primary"
value="{% trans "Install" %}" />
{% endif %}
</form>
{% elif setup_helper.get_state == 'needs-update' %}
<p>
{% blocktrans trimmed %}
This application needs an update. Update now?
{% endblocktrans %}
</p>
<form action="" method="post">
{% csrf_token %}
{% if package_manager_is_busy %}
<div class="alert alert-warning" role="alert">
{% blocktrans trimmed %}
Another installation or upgrade is already running.
Please wait for a few moments before trying again.
{% endblocktrans %}
</div>
<input type="submit" class="btn btn-md btn-primary"
disabled="disabled" value="{% trans "Install" %}" />
{% else %}
<input type="submit" class="btn btn-md btn-primary"
value="{% trans "Update" %}" />
{% endif %}
</form>
{% endif %}
{% else %}
{% if setup_helper.current_operation.step == 'pre' %}
{% trans "Performing pre-install operation" %}
{% elif setup_helper.current_operation.step == 'post' %}
{% trans "Performing post-install operation" %}
{% elif setup_helper.current_operation.step == 'install' %}
{% with transaction=setup_helper.current_operation.transaction %}
<div>
{% blocktrans trimmed with package_names=transaction.package_names|join:", " status=transaction.status_string %}
Installing {{ package_names }}: {{ status }}
{% endblocktrans %}
</div>
<div class="progress">
<div class="progress-bar progress-bar-striped active"
role="progressbar" aria-valuemin="0" aria-valuemax="100"
aria-valuenow="{{ transaction.percentage }}"
style="width: {{ transaction.percentage }}%">
<span class="sr-only">
{% blocktrans trimmed with percentage=transaction.percentage %}
{{ percentage }}% complete
{% endblocktrans %}
</span>
</div>
</div>
{% endwith %}
{% endif %}
{% endif %}
{% endblock %}