Commit 799a4f52 authored by Mickaël Desfrênes's avatar Mickaël Desfrênes
Browse files

fix pks

parent 1d2002d7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ def projects(*args, **kwargs):
            str(p.ark_redirect),
            str(p.use_exiftool),
            ", ".join(
                f"{a.user.username} ({a.pk})"
                f"{a.user.username} ({a.user.pk})"
                for a in ProjectAccess.objects.filter(project=p)
            ),
        )
@@ -73,7 +73,7 @@ def users(*args, **kwargs):
            str(u.is_active),
            str(u.is_superuser),
            ", ".join(
                f"{a.project.label} ({a.pk})"
                f"{a.project.label} ({a.project.pk})"
                for a in ProjectAccess.objects.filter(user=u)
            ),
        )