code cleanup

This commit is contained in:
Alicja Cięciwa
2020-11-13 17:43:06 +01:00
parent 8512818192
commit 68337fcf66
11 changed files with 14 additions and 75 deletions

View File

@@ -1,42 +1,6 @@
from django import forms
from work.models import HoursInput
# from django.forms import extras
from django.forms.widgets import SelectDateWidget
from datetime import datetime, date
from django.forms import ModelForm
# from work.models import HoursInput
WORKPLACE_CHOICE =(
("1", "oNE"),
("2", "TWO")
)
# base form to input the number of hours
# class HoursInputForm(forms.Form):
# date = forms.DateField(
# # input_formats=['%d.%m.%Y'],
# widget=forms.DateInput(attrs={
# 'class': 'form-control',
# 'type': 'date',
# # 'value': datetime.now().strftime("%d-%m-%Y")
# }),
# label="")
#
# hours_number = forms.IntegerField(
# label="",
# widget=forms.NumberInput(attrs={'required': True, 'type': 'number',
# 'placeholder': 'Liczba godzin', 'class': 'form-control'} ),
# min_value=0,
# max_value=15
# )
#
# workplace = forms.CharField(
# label="",
# widget=forms.TextInput(attrs={'autofocus': True, 'class': 'form-control',
# 'placeholder': 'Miejsce pracy'}),
# required=True
# )
from datetime import datetime
class HoursInputForm(forms.ModelForm):
@@ -48,13 +12,12 @@ class HoursInputForm(forms.ModelForm):
def __init__(self, *args, **kwargs):
super(HoursInputForm, self).__init__(*args, **kwargs)
self.fields['date'] = forms.DateField(
initial=datetime.now(),
widget=forms.DateInput(attrs={
'placeholder': 'Data',
'type': 'date',
}),
error_messages={
'required': 'Podaj właściwą datę',
})
)
self.fields['hours_number'] = forms.IntegerField(
widget=forms.NumberInput(attrs={
'placeholder': 'Liczba godzin'
@@ -74,10 +37,3 @@ class HoursInputForm(forms.ModelForm):
self.fields[field].help_text = None
self.fields[field].label = ''
# class HoursInputForm(ModelForm):
# class Meta:
# model = HoursInput
# fields = ['date', 'hours_number']
# date = forms.DateField()
# hours_number = forms.IntegerField(min_value=0, max_value=15, required=True)
# workplace = forms.ChoiceField(choices=WORKPLACE_CHOICE)