past3d/pastebin/forms.py

9 lines
185 B
Python
Raw Normal View History

2013-10-13 18:41:03 +02:00
from django.forms import ModelForm
from models import Geometry
class GeometryForm(ModelForm):
class Meta:
model = Geometry
fields = ['name', 'description', 'file', 'sourcefile']