add simple docstrings
This commit is contained in:
parent
4a52272558
commit
13d67c26bf
3 changed files with 15 additions and 0 deletions
|
|
@ -9,6 +9,9 @@ from django import forms
|
|||
from .models import Profile
|
||||
|
||||
class ProfileForm(forms.ModelForm):
|
||||
"""
|
||||
Forms pour la création d'un profile utilisateur.
|
||||
"""
|
||||
class Meta:
|
||||
model = Profile
|
||||
fields = '__all__'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue