dav_registration: change filter button logic from select buttons to OR
All checks were successful
buildbot/django-dav-events--test Build done.

This commit is contained in:
2023-07-12 10:06:01 +02:00
parent 811983abfe
commit b86708598f
3 changed files with 59 additions and 49 deletions

View File

@@ -31,6 +31,10 @@ class ChoiceSet(object):
else:
return False
@property
def codes(self):
return self._codes
def get_label(self, code):
return self._labels[code]