adding deltatime in allocate form
This commit is contained in:
parent
5eb8a5a4b9
commit
8303054706
|
@ -32,7 +32,7 @@ class DeviceListView(View):
|
||||||
form_new_action = NewActionForm()
|
form_new_action = NewActionForm()
|
||||||
|
|
||||||
allocate = AllocateForm(start_time=datetime.datetime.now(),
|
allocate = AllocateForm(start_time=datetime.datetime.now(),
|
||||||
end_time=datetime.datetime.now())
|
end_time=datetime.datetime.now()+datetime.timedelta(1))
|
||||||
|
|
||||||
context = {'devices': devices,
|
context = {'devices': devices,
|
||||||
'lots': lots,
|
'lots': lots,
|
||||||
|
@ -110,7 +110,7 @@ class NewActionView(View):
|
||||||
|
|
||||||
def dispatch_request(self):
|
def dispatch_request(self):
|
||||||
form = NewActionForm()
|
form = NewActionForm()
|
||||||
# import pdb; pdb.set_trace()
|
import pdb; pdb.set_trace()
|
||||||
next_url = url_for('inventory.devices.devicelist')
|
next_url = url_for('inventory.devices.devicelist')
|
||||||
if form.validate_on_submit():
|
if form.validate_on_submit():
|
||||||
# form.save()
|
# form.save()
|
||||||
|
|
Reference in a new issue