mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-10 00:42:06 +00:00

Contains basic functionality, and an import of most of the static content from the old site. There is still plenty more to do...
9 lines
155 B
Python
9 lines
155 B
Python
from django import forms
|
|
|
|
from models import Event
|
|
|
|
class EventForm(forms.ModelForm):
|
|
class Meta:
|
|
model = Event
|
|
exclude = ('submitter', 'approved', )
|