django-smartbase-admin 1.0.11__py3-none-any.whl → 1.0.12__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,6 +10,7 @@ class SBAdminCustomAction(object):
10
10
  css_class = None
11
11
  no_params = False
12
12
  open_in_modal = False
13
+ open_in_new_tab = False
13
14
 
14
15
  def __init__(
15
16
  self,
@@ -24,6 +25,7 @@ class SBAdminCustomAction(object):
24
25
  group=None,
25
26
  sub_actions=None,
26
27
  icon=None,
28
+ open_in_new_tab=None,
27
29
  ) -> None:
28
30
  super().__init__()
29
31
  self.title = title
@@ -37,6 +39,7 @@ class SBAdminCustomAction(object):
37
39
  self.group = group
38
40
  self.sub_actions = sub_actions
39
41
  self.icon = icon
42
+ self.open_in_new_tab = open_in_new_tab
40
43
  self.resolve_url()
41
44
 
42
45
  def resolve_url(self):