forked from expo/troggle
315a4ce2c7
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8083 by aaron @ 12/8/2008 5:17 AM
6 lines
128 B
Python
6 lines
128 B
Python
from django.forms import ModelForm
|
|
from models import Cave
|
|
|
|
class CaveForm(ModelForm):
|
|
class Meta:
|
|
model = Cave |