From 849b71f7e42f6a2bc0fb6ec470f09fd20c8241ea Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 3 Sep 2021 00:23:29 +0200 Subject: [PATCH] "normal" admin-logout message --- InvenTree/templates/registration/logged_out.html | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 InvenTree/templates/registration/logged_out.html diff --git a/InvenTree/templates/registration/logged_out.html b/InvenTree/templates/registration/logged_out.html new file mode 100644 index 0000000000..8b018fa7b4 --- /dev/null +++ b/InvenTree/templates/registration/logged_out.html @@ -0,0 +1,10 @@ +{% extends "registration/logged_out.html" %} +{% load i18n %} + +{% block content %} + +

{% translate "You were logged out successfully." %}

+ +

{% translate 'Log in again' %}

+ +{% endblock %}