nk20/apps/member/forms.py

16 lines
433 B
Python
Raw Normal View History

2019-07-08 11:59:31 +00:00
# -*- mode: python; coding: utf-8 -*-
# Copyright (C) 2018-2019 by BDE ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
2019-08-11 14:22:52 +00:00
from django.contrib.auth.forms import UserChangeForm, UserCreationForm
from django.contrib.auth.models import User
from django import forms
2019-07-08 11:59:31 +00:00
2019-08-11 14:22:52 +00:00
from .models import Profile
2019-07-08 11:59:31 +00:00
2019-08-11 14:22:52 +00:00
class ProfileForm(forms.ModelForm):
class Meta:
model = Profile
fields = '__all__'
2019-08-11 15:39:05 +00:00
exclude = ['user']