如何在django表单中获取时间小部件?

时间:2013-07-31 21:15:07

标签: django

我知道我们可以在django中拥有日期小部件。

birth_year = forms.DateField(widget=SelectDateWidget(years=BIRTH_YEAR_CHOICES))

在django中选择时间有类似的东西吗?

1 个答案:

答案 0 :(得分:0)

您正在寻找DateTime字段。

birth_time=forms.DateTime()

了解更多信息:https://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.DateTimeField