From d12023ecd198b65f793f3d697b1f559e808650b9 Mon Sep 17 00:00:00 2001 From: Yaro Kasear Date: Mon, 21 Jul 2025 15:03:06 -0500 Subject: [PATCH] Add rounded styling to alert messages in inventory, user, and worklog templates for improved UI consistency --- inventory/templates/inventory.html | 2 +- inventory/templates/user.html | 2 +- inventory/templates/worklog.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/inventory/templates/inventory.html b/inventory/templates/inventory.html index 8126665..bd2ca3d 100644 --- a/inventory/templates/inventory.html +++ b/inventory/templates/inventory.html @@ -124,7 +124,7 @@ right=buttonBar ) }} {% if item.condition in ["Removed", "Disposed"] %} -
+
This item is not available and cannot be edited.
{% endif %} diff --git a/inventory/templates/user.html b/inventory/templates/user.html index ae93bd8..29cdeb4 100644 --- a/inventory/templates/user.html +++ b/inventory/templates/user.html @@ -75,7 +75,7 @@ right = iconBar ) }} {% if not user.active %} -
This user is inactive. You will not be able to make any changes to this record.
+
This user is inactive. You will not be able to make any changes to this record.
{% endif %} {% endblock %} diff --git a/inventory/templates/worklog.html b/inventory/templates/worklog.html index 03706f3..92ab0b9 100644 --- a/inventory/templates/worklog.html +++ b/inventory/templates/worklog.html @@ -130,7 +130,7 @@ right=iconBar ) }} {% if log.complete %} -
+
This work item is complete. You cannot make any further changes.
{% endif %}