本文整理汇总了Python中corehq.apps.domain.models.LICENSES.get方法的典型用法代码示例。如果您正苦于以下问题:Python LICENSES.get方法的具体用法?Python LICENSES.get怎么用?Python LICENSES.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类corehq.apps.domain.models.LICENSES
的用法示例。
在下文中一共展示了LICENSES.get方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _appstore_context
# 需要导入模块: from corehq.apps.domain.models import LICENSES [as 别名]
# 或者: from corehq.apps.domain.models.LICENSES import get [as 别名]
def _appstore_context(context={}):
context['sortables'] = [
('category', [(d.replace(' ', '+'), d, count) for d, count in Domain.field_by_prefix('project_type')]),
('region', [(d.replace(' ', '+'), d, count) for d, count in Domain.field_by_prefix('region')]),
('author', [(d.replace(' ', '+'), d, count) for d, count in Domain.field_by_prefix('author')]),
('license', [(d, LICENSES.get(d), count) for d, count in Domain.field_by_prefix('license')]),
]
return context
示例2: display_name
# 需要导入模块: from corehq.apps.domain.models import LICENSES [as 别名]
# 或者: from corehq.apps.domain.models.LICENSES import get [as 别名]
def display_name(self):
return LICENSES.get(self.type, "Improper License")