This commit is contained in:
Ross
2021-12-14 18:16:22 +00:00
parent 58e7609039
commit fa6121e373
2 changed files with 3 additions and 7 deletions
+2 -6
View File
@@ -5,12 +5,8 @@ from django.contrib.auth.models import User
from generic.models import CidUser
class CidUserFilter(django_filters.FilterSet):
class Meta:
model = CidUser
fields = (
"cid",
"active",
"internal",
"group"
)
fields = ("cid", "active", "internal_candidate", "group")
+1 -1
View File
@@ -47,6 +47,6 @@ class CidUserTable(tables.Table):
"passcode",
"active",
"group",
"internal"
"internal_candidate"
)
# sequence = ("view")