X-Git-Url: http://git.ithinksw.org/~kgodey/maayanwich.git/blobdiff_plain/2cc7186840aa440de15f8926c3069c9fcc8cdf10..851d4e0ba5381535c55fe4347103aaa53c785606:/forms.py diff --git a/forms.py b/forms.py index 8685ea4..a2c5fc8 100644 --- a/forms.py +++ b/forms.py @@ -1,12 +1,14 @@ from django.forms import ModelForm -from models import Sandwich, Ingredient, Artist +from models import Sandwich, Ingredient +from django.contrib.auth.models import User +from django import forms class SandwichForm(ModelForm): class Meta: model = Sandwich - exclude = ('slug',) + exclude = ('slug', 'user') class IngredientForm(ModelForm): @@ -16,8 +18,10 @@ class IngredientForm(ModelForm): exclude = ('slug',) -class ArtistForm(ModelForm): - - class Meta: - model = Artist - exclude = ('slug',) \ No newline at end of file +class NewUserForm(forms.Form): + first_name = forms.CharField() + last_name = forms.CharField() + email = forms.EmailField() + username = forms.CharField() + password = forms.CharField(widget=forms.PasswordInput) + confirm_password = forms.CharField(widget=forms.PasswordInput)