forked from expo/troggle
157f11b659
Various other little things, e.g. filled in the footer with links. Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8305 by aaron @ 3/16/2009 8:53 AM
11 lines
211 B
Python
11 lines
211 B
Python
from django.forms import ModelForm
|
|
from models import Cave, Person
|
|
|
|
class CaveForm(ModelForm):
|
|
class Meta:
|
|
model = Cave
|
|
|
|
class PersonForm(ModelForm):
|
|
class Meta:
|
|
model = Person
|