mirror of
https://github.com/house-of-vanity/OutFleet.git
synced 2025-08-21 14:37:16 +00:00
8 lines
211 B
Python
8 lines
211 B
Python
from django import forms
|
|
from .models import User
|
|
|
|
class UserForm(forms.ModelForm):
|
|
class Meta:
|
|
model = User
|
|
fields = ['username', 'first_name', 'last_name', 'email', 'comment', 'is_active']
|