简体   繁体   中英

Range of dates in a django model and admin

I would like to register a range of dates in the model and have in admin a widget similar to this? 在此处输入图片说明

It's possible to use DateTimeField or calendar?

Widgets are part of the ModelForm not the model. You could add a range of dates in the Meta class widget definition like this:

class Meta:
    model = YourModel
    fields = '__all__'
    widgets = {
                'birthdate': SelectDateWidget(attrs = {
                 },years = range(1920, 2017),),
             }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM