cookiecutter-django/{{cookiecutter.repo_name}}/{{cookiecutter.project_name}}/users/forms.py
2013-12-17 16:27:18 +01: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")