45 lines
923 B
Python
45 lines
923 B
Python
from django import forms
|
|
from django.contrib.auth.forms import UserCreationForm
|
|
from django.forms import ModelForm
|
|
|
|
from .models import Hook, User
|
|
|
|
# Create your forms here.
|
|
|
|
|
|
class NewUserForm(UserCreationForm):
|
|
email = forms.EmailField(required=True)
|
|
|
|
class Meta:
|
|
model = User
|
|
fields = (
|
|
"username",
|
|
"email",
|
|
"first_name",
|
|
"last_name",
|
|
"password1",
|
|
"password2",
|
|
)
|
|
|
|
def save(self, commit=True):
|
|
user = super(NewUserForm, self).save(commit=False)
|
|
user.email = self.cleaned_data["email"]
|
|
if commit:
|
|
user.save()
|
|
return user
|
|
|
|
|
|
class CustomUserCreationForm(UserCreationForm):
|
|
class Meta:
|
|
model = User
|
|
fields = "__all__"
|
|
|
|
|
|
class HookForm(ModelForm):
|
|
class Meta:
|
|
model = Hook
|
|
fields = (
|
|
"name",
|
|
"hook",
|
|
)
|