First step of the groups subapp, view groups and request access done

This commit is contained in:
2010-10-21 16:27:47 +01:00
parent 3b568f3156
commit f555e85e3d
14 changed files with 332 additions and 7 deletions

11
groups/forms.py Normal file
View File

@@ -0,0 +1,11 @@
from django import forms
import settings
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')