From 6310e4ad932f2249c7f3e6d058792e10e438d9f4 Mon Sep 17 00:00:00 2001 From: KlemenSpruk Date: Thu, 12 Oct 2023 12:05:13 +0200 Subject: [PATCH] added issue as todo --- django_project_base/rest/project.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/django_project_base/rest/project.py b/django_project_base/rest/project.py index f54055c0..317b50db 100644 --- a/django_project_base/rest/project.py +++ b/django_project_base/rest/project.py @@ -183,6 +183,7 @@ def __init__(self, *args, is_filter: bool = False, **kwds): super().__init__(*args, is_filter=is_filter, **kwds) self.actions.actions = [a for a in self.actions.actions if a.name != "delete"] self.actions.actions.append( + # TODO: https://taiga.velis.si/project/velis74-dynamic-forms/issue/837 TableAction( position=TablePosition.FIELD_END, label="Reset pending", @@ -198,6 +199,7 @@ def __init__(self, *args, is_filter: bool = False, **kwds): ) request = self.context.get("request") if request and (request.user.is_superuser or request.user.is_staff): + # TODO: https://taiga.velis.si/project/velis74-dynamic-forms/issue/837 self.actions.actions.append( TableAction( position=TablePosition.ROW_END,