mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-13 22:32:15 +00:00
11 lines
278 B
Python
11 lines
278 B
Python
from django import forms
|
|
|
|
from groups.models import GroupRequest
|
|
from groups.app_defines import *
|
|
|
|
class GroupRequestForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
model = GroupRequest
|
|
exclude = ('group', 'user', 'status', 'changed_by', 'changed_date', 'created_date')
|