mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
Reorganise the file structure into a project tree
This commit is contained in:
10
app/groups/forms.py
Normal file
10
app/groups/forms.py
Normal file
@@ -0,0 +1,10 @@
|
||||
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')
|
||||
Reference in New Issue
Block a user