{{_('Define the setpoint over the day based on a cubic Bezier curve. If unfamiliar with a Bezier curve, it is recommended you use the graphical Bezier curve generator and use the 8 variables it creates for 4 points (each a set of x and y). The x-axis start (x3) and end (x0) will be automatically stretched or skewed to fit within a 24-hour period and this method will repeat daily.')}}
{{form_add_method.x0.label(class_='control-label')}}
{{form_add_method.x0(class_='form-control', value=last_bezier_method.x0)}}
{{form_add_method.y0.label(class_='control-label')}}
{{form_add_method.y0(class_='form-control', value=last_bezier_method.y0)}}
{{form_add_method.x1.label(class_='control-label')}}
{{form_add_method.x1(class_='form-control', value=last_bezier_method.x1)}}
{{form_add_method.y1.label(class_='control-label')}}
{{form_add_method.y1(class_='form-control', value=last_bezier_method.y1)}}
{{form_add_method.x2.label(class_='control-label')}}
{{form_add_method.x2(class_='form-control', value=last_bezier_method.x2)}}
{{form_add_method.y2.label(class_='control-label')}}
{{form_add_method.y2(class_='form-control', value=last_bezier_method.y2)}}
{{form_add_method.x3.label(class_='control-label')}}
{{form_add_method.x3(class_='form-control', value=last_bezier_method.x3)}}
{{form_add_method.y3.label(class_='control-label')}}
{{form_add_method.y3(class_='form-control', value=last_bezier_method.y3)}}
{{form_add_method.shift_angle.label(class_='control-label')}}
{{form_add_method.shift_angle(class_='form-control', value=last_bezier_method.shift_angle)}}
{{form_add_method.save(class_='form-control btn btn-default', value=_('Save'))}}