From 24b93f98f359542917e13a64179fbb2dde8be71d Mon Sep 17 00:00:00 2001 From: Laurent Date: Fri, 1 Aug 2025 15:14:16 +0200 Subject: [PATCH] fix plural for admin --- sync/models/data_access.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sync/models/data_access.py b/sync/models/data_access.py index bc2507c..1a34a11 100644 --- a/sync/models/data_access.py +++ b/sync/models/data_access.py @@ -20,6 +20,9 @@ class DataAccess(BaseModel): store_id = models.CharField(max_length=100, default="", blank=True, null=True) # a value matching LeStorage directory sub-stores. Matches the name of the directory. granted_at = models.DateTimeField(auto_now_add=True) + class Meta: + verbose_name_plural = "Data Access" + def delete_dependencies(self): pass