22 lines
		
	
	
		
			480 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			480 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""passbook administrative user forms"""
 | 
						|
 | 
						|
from django import forms
 | 
						|
 | 
						|
from passbook.admin.fields import YAMLField
 | 
						|
from passbook.core.models import User
 | 
						|
 | 
						|
 | 
						|
class UserForm(forms.ModelForm):
 | 
						|
    """Update User Details"""
 | 
						|
 | 
						|
    class Meta:
 | 
						|
 | 
						|
        model = User
 | 
						|
        fields = ["username", "name", "email", "is_staff", "is_active", "attributes"]
 | 
						|
        widgets = {
 | 
						|
            "name": forms.TextInput,
 | 
						|
        }
 | 
						|
        field_classes = {
 | 
						|
            "attributes": YAMLField,
 | 
						|
        }
 |