1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-23 01:07:35 +00:00
seahub/contacts/forms.py

15 lines
250 B
Python
Raw Normal View History

2012-02-11 03:12:54 +00:00
from django import forms
class AddContactForm(forms.Form):
"""
Form for adding a contact.
"""
email = forms.EmailField()
def __init__(self, *args, **kwargs):
super(AddContactForm, self).__init__(*args, **kwargs)