2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-30 02:30:52 +00:00

customize 503

This commit is contained in:
Matthias
2021-11-15 23:48:49 +01:00
parent b783ec566c
commit e52dd4828a
3 changed files with 179 additions and 8 deletions

View File

@ -1,14 +1,17 @@
{% extends "account/base.html" %}
{% extends "auth_base.html" %}
{% load i18n %}
{% block head_title %}
{% trans "Page is in Maintenance" %}
{% block head %}
<meta http-equiv="refresh" content="30">
{% endblock %}
{% block content %}
<h3>{% trans "The Page is in currently in maintenance mode" %}</h3>
{% block page_title %}
{% trans 'Site is in Maintenance' %}
{% endblock %}
<div class='alert alert-danger alert-block'>
{% trans "This page will reload each minute until the page becomes available again." %}
</div>
{% block body_title %}{% trans 'Site is in Maintenance' %}{% endblock %}
{% block content %}
{% trans 'The site is currently in maintenance and should be up again soon!' %}
{% endblock %}