is there anything like a timewidget or clock widget in Django which will help me to input data into a form for appointment date (like we have calendar or date widget).
i have my date widget working with the below code in my forms.py:
import datetime
from django.forms.extras.widgets import SelectDateWidget
mydate = forms.DateField(widget=SelectDateWidget)
is there anything like this for time widget