mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 01:12:08 +01:00 
			
		
		
		
	Highlight future users that declared that they opened a bank account
This commit is contained in:
		@@ -4,6 +4,8 @@
 | 
			
		||||
import django_tables2 as tables
 | 
			
		||||
from django.contrib.auth.models import User
 | 
			
		||||
 | 
			
		||||
from treasury.models import SogeCredit
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class FutureUserTable(tables.Table):
 | 
			
		||||
    """
 | 
			
		||||
@@ -21,6 +23,7 @@ class FutureUserTable(tables.Table):
 | 
			
		||||
        fields = ('last_name', 'first_name', 'username', 'email', )
 | 
			
		||||
        model = User
 | 
			
		||||
        row_attrs = {
 | 
			
		||||
            'class': 'table-row',
 | 
			
		||||
            'class': lambda record: 'table-row'
 | 
			
		||||
                                    + (' bg-warning' if SogeCredit.objects.filter(user=record).exists() else ''),
 | 
			
		||||
            'data-href': lambda record: record.pk
 | 
			
		||||
        }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user