当前位置: 首页>>代码示例>>Python>>正文


Python MONTHS.iteritems方法代码示例

本文整理汇总了Python中django.utils.dates.MONTHS.iteritems方法的典型用法代码示例。如果您正苦于以下问题:Python MONTHS.iteritems方法的具体用法?Python MONTHS.iteritems怎么用?Python MONTHS.iteritems使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在django.utils.dates.MONTHS的用法示例。


在下文中一共展示了MONTHS.iteritems方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from django.utils.dates import MONTHS [as 别名]
# 或者: from django.utils.dates.MONTHS import iteritems [as 别名]
 def __init__(self, *args, **kwargs):
     super(StripePaymentForm, self).__init__(*args, **kwargs)
     self.fields['card_cvv'].label = "Card CVC"
     self.fields['card_cvv'].help_text = "Card Verification Code; see rear of card."
     months = [ (m[0], u'%02d - %s' % (m[0], unicode(m[1])))
                 for m in sorted(MONTHS.iteritems()) ]
     self.fields['card_expiry_month'].choices = months
开发者ID:jnm,项目名称:django-zebra,代码行数:9,代码来源:forms.py

示例2: as_dict

# 需要导入模块: from django.utils.dates import MONTHS [as 别名]
# 或者: from django.utils.dates.MONTHS import iteritems [as 别名]
    def as_dict(self):
        widget_dict = super(RemoteDateInput, self).as_dict()

        widget_dict['input_type'] = 'date'

        years = self.widget.years
        if not callable(self.widget.years):
            years = lambda: self.widget.years

        choices = [{'key': "%02d" % i, 'value': i} for i in range(1, 32)]
        day_choices = self.create_select('day', choices)

        choices = [{'key': "%02d" % i, 'value': j} for (i, j) in MONTHS.iteritems()]
        month_choices = self.create_select('month', choices)

        choices = [{'key': "%s" % i, 'value': i} for i in years()]
        year_choices = self.create_select('year', choices)

        widget_dict['choices'] = [day_choices, month_choices, year_choices]
        return widget_dict
开发者ID:gadventures,项目名称:django-remote-forms,代码行数:22,代码来源:widgets.py


注:本文中的django.utils.dates.MONTHS.iteritems方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。