mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 01:12:08 +01:00 
			
		
		
		
	🐛 Display full registration table when the search bar is empty
This commit is contained in:
		@@ -179,8 +179,6 @@ class FutureUserListView(ProtectQuerysetMixin, LoginRequiredMixin, SingleTableVi
 | 
			
		||||
                | Q(profile__section__iregex=pattern)
 | 
			
		||||
                | Q(username__iregex="^" + pattern)
 | 
			
		||||
            )
 | 
			
		||||
        else:
 | 
			
		||||
            qs = qs.none()
 | 
			
		||||
 | 
			
		||||
        return qs[:20]
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -236,8 +236,6 @@ class WEIRegistrationsView(ProtectQuerysetMixin, LoginRequiredMixin, SingleTable
 | 
			
		||||
        pattern = self.request.GET.get("search", "")
 | 
			
		||||
 | 
			
		||||
        if not pattern:
 | 
			
		||||
            return qs.none()
 | 
			
		||||
 | 
			
		||||
            qs = qs.filter(
 | 
			
		||||
                Q(user__first_name__iregex=pattern)
 | 
			
		||||
                | Q(user__last_name__iregex=pattern)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user