Reorganise the file structure into a project tree

This commit is contained in:
2011-03-11 12:58:50 +00:00
parent 58b1691638
commit 3686aa7523
226 changed files with 7 additions and 5 deletions

10
app/groups/forms.py Normal file
View 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')