Skip to content

Commit

Permalink
Merge pull request #94 from maykinmedia/small-change/applink-change-a…
Browse files Browse the repository at this point in the history
…dmin-index-view-only-true

Applinks in admin as read_only
  • Loading branch information
bart-maykin authored Dec 11, 2024
2 parents b559e5f + 00dc6e8 commit 09af377
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions django_admin_index/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ def as_list(self, request, include_remaining=True):
"app_label": app.slug,
"admin_url": app_link.link,
"active": request.path.startswith(app_link.link),
"view_only": True,
}
)
active = request.path.startswith(app_link.link)
Expand Down
4 changes: 4 additions & 0 deletions tests/unit/test_app_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ def test_as_list_structure(self):
"name": self.app_link.name,
"app_label": self.app_group.slug,
"admin_url": self.app_link.link,
"view_only": True,
},
)

Expand Down Expand Up @@ -180,6 +181,7 @@ def test_dashboard_active_link_only_delete_permission(self):
"name": self.app_link.name,
"app_label": self.app_group.slug,
"admin_url": self.app_link.link,
"view_only": True,
},
)

Expand Down Expand Up @@ -208,6 +210,7 @@ def test_dashboard_active_link_only_add_permission(self):
"name": self.app_link.name,
"app_label": self.app_group.slug,
"admin_url": self.app_link.link,
"view_only": True,
},
)

Expand Down Expand Up @@ -236,6 +239,7 @@ def test_dashboard_active_link_only_change_permission(self):
"name": self.app_link.name,
"app_label": self.app_group.slug,
"admin_url": self.app_link.link,
"view_only": True,
},
)

Expand Down

0 comments on commit 09af377

Please sign in to comment.