conference/forms.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 25 Sep 2009 00:27:42 +0530
changeset 6 4e819dd96e1f
child 7 4976650293f4
permissions -rw-r--r--
Restructured and revamped the entire settings.

from django import forms
from django.contrib.auth.models import User
from django.utils.translation import ugettext_lazy as _

from content.models import Participant


class ParticipantForm(forms.ModelForm):
  class Meta:
    model = Participant
    
class LoginForm(forms.Form):
	username = forms.CharField(max_length=30, label=_(u'username'))

	password = forms.CharField(max_length=50,widget=forms.PasswordInput,
                               label=_("Enter New Password"))