mirror of https://gitlab.crans.org/bde/nk20
Compare commits
2 Commits
e4998cb6e3
...
963ba05d01
Author | SHA1 | Date |
---|---|---|
Pierre-antoine Comby | 963ba05d01 | |
Pierre-antoine Comby | 18eaf4477e |
|
@ -39,7 +39,7 @@ class ProfileForm(forms.ModelForm):
|
||||||
"""
|
"""
|
||||||
report_frequency = forms.IntegerField(required=False, initial=0, label=_("Report frequency"))
|
report_frequency = forms.IntegerField(required=False, initial=0, label=_("Report frequency"))
|
||||||
|
|
||||||
last_report = forms.DateField(required=False, disabled=True, label=_("Last report date"))
|
last_report = forms.DateTimeField(required=False, disabled=True, label=_("Last report date"))
|
||||||
|
|
||||||
def save(self, commit=True):
|
def save(self, commit=True):
|
||||||
if not self.instance.section or (("department" in self.changed_data
|
if not self.instance.section or (("department" in self.changed_data
|
||||||
|
@ -50,7 +50,7 @@ class ProfileForm(forms.ModelForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Profile
|
model = Profile
|
||||||
fields = '__all__'
|
fields = '__all__'
|
||||||
exclude = ('user', 'email_confirmed', 'registration_valid', )
|
exclude = ('user', )
|
||||||
|
|
||||||
|
|
||||||
class ClubForm(forms.ModelForm):
|
class ClubForm(forms.ModelForm):
|
||||||
|
|
|
@ -97,7 +97,7 @@ class Profile(models.Model):
|
||||||
default=0,
|
default=0,
|
||||||
)
|
)
|
||||||
|
|
||||||
last_report = models.DateField(
|
last_report = models.DateTimeField(
|
||||||
verbose_name=_("last report date"),
|
verbose_name=_("last report date"),
|
||||||
default=timezone.now,
|
default=timezone.now,
|
||||||
)
|
)
|
||||||
|
|
|
@ -39,7 +39,9 @@ class WEIRegistrationForm(forms.ModelForm):
|
||||||
'placeholder': 'Nom ...',
|
'placeholder': 'Nom ...',
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
"birth_date": DatePickerInput(),
|
"birth_date": DatePickerInput(options={'defaultDate':'2000-01-01',
|
||||||
|
'minDate':'1900-01-01',
|
||||||
|
'maxDate': '2100-01-01'}),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue