cookiecutter-django/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/users/forms.py
2014-03-11 19:19:39 -07:00

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")