2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 05:25:42 +00:00

add maintenance mode

This commit is contained in:
Matthias
2021-11-15 22:07:30 +01:00
parent 45167fe2f0
commit b783ec566c
4 changed files with 53 additions and 4 deletions

View File

@ -0,0 +1,14 @@
{% extends "account/base.html" %}
{% load i18n %}
{% block head_title %}
{% trans "Page is in Maintenance" %}
{% endblock %}
{% block content %}
<h3>{% trans "The Page is in currently in maintenance mode" %}</h3>
<div class='alert alert-danger alert-block'>
{% trans "This page will reload each minute until the page becomes available again." %}
</div>
{% endblock %}