mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
14 lines
390 B
HTML
14 lines
390 B
HTML
|
{% 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 %}
|