cookiecutter-django/{{cookiecutter.repo_name}}/{{cookiecutter.package_name}}/users/forms.py

15 lines
296 B
Python

# -*- coding: utf-8 -*-
from django import forms
from .models import User
class UserForm(forms.ModelForm):
class Meta:
# Set this form to use the User model.
model = User
# Constrain the UserForm to just these fields.
fields = ("first_name", "last_name")