2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-27 09:10:51 +00:00

Merge pull request #2266 from SchrodingersGat/login-tweaks

Login tweaks
This commit is contained in:
Oliver
2021-11-08 10:19:23 +11:00
committed by GitHub
7 changed files with 47 additions and 24 deletions

View File

@ -190,6 +190,18 @@ $(document).ready(function () {
{% endif %}
moment.locale('{{ request.LANGUAGE_CODE }}');
// Account notifications
{% if messages %}
{% for message in messages %}
showMessage(
'{{ message }}',
{
style: 'info',
}
);
{% endfor %}
{% endif %}
});
</script>