Guest User

Untitled

a guest
Jun 17th, 2012
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. from kay.utils.forms.modelform import ModelForm
  2. from people.models import Person
  3.  
  4. class PersonForm(ModelForm):
  5. class Meta:
  6. model = Person
  7. exclude = ("created_at", "updated_at",)
Advertisement
Add Comment
Please, Sign In to add comment