From e60a99b5f799d1323185b3fc58b362f39591fbcd Mon Sep 17 00:00:00 2001 From: Horilla Date: Tue, 3 Sep 2024 14:05:06 +0530 Subject: [PATCH] [FIX] PMS: Fixed feedback answer icon width --- pms/templates/feedback/feedback_list.html | 8 ++++---- pms/urls.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pms/templates/feedback/feedback_list.html b/pms/templates/feedback/feedback_list.html index 8e74f8b6e..7e9043176 100644 --- a/pms/templates/feedback/feedback_list.html +++ b/pms/templates/feedback/feedback_list.html @@ -142,7 +142,7 @@ onclick="event.stopPropagation()" >
- +
{% if feedback.archive == True %} @@ -285,7 +285,7 @@
{{ current_date|timesince:feedback.end_date }}
- + {% if feedback.archive == True %} @@ -430,9 +430,9 @@
{% if feedback|is_feedback_answer:request.user %} - + {% else %} - + {% endif %} diff --git a/pms/urls.py b/pms/urls.py index 1b873a9d1..8039b0c3a 100644 --- a/pms/urls.py +++ b/pms/urls.py @@ -423,7 +423,7 @@ urlpatterns = [ # name="view-bonus-setting", # ), path( - "bonus-point-setting", + "bonus-point-setting/", cbvs.BonusPointSettingSectionView.as_view(), name="bonus-point-setting", ),