Files
postgres-web/pgweb/events/forms.py
Magnus Hagander 90b758c247 A first very basic import.
Contains basic functionality, and an import of most of the static content
from the old site.

There is still plenty more to do...
2009-09-14 14:39:25 +02:00

9 lines
155 B
Python

from django import forms
from models import Event
class EventForm(forms.ModelForm):
class Meta:
model = Event
exclude = ('submitter', 'approved', )