mirror of
https://gitlab.crans.org/bde/nk20
synced 2025-07-21 00:19:10 +02:00
Base template and picture
This commit is contained in:
@ -5,7 +5,7 @@ from django import forms
|
||||
from django.forms.widgets import NumberInput
|
||||
from note_kfet.inputs import Autocomplete
|
||||
|
||||
from .models import Challenge, FamilyMembership, User
|
||||
from .models import Challenge, FamilyMembership, User, Family
|
||||
|
||||
|
||||
class ChallengeUpdateForm(forms.ModelForm):
|
||||
@ -36,3 +36,9 @@ class FamilyMembershipForm(forms.ModelForm):
|
||||
},
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
class FamilyUpdateForm(forms.ModelForm):
|
||||
class Meta:
|
||||
model = Family
|
||||
fields = ('description', )
|
Reference in New Issue
Block a user