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


Python State.dictionary方法代码示例

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


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

示例1: getFields

# 需要导入模块: from uds.core.util.State import State [as 别名]
# 或者: from uds.core.util.State.State import dictionary [as 别名]
 def getFields(self, parent):
     return [
         {'revision': {'title': _('Revision'), 'type': 'numeric', 'width': '6em'}},
         {'publish_date': {'title': _('Publish date'), 'type': 'datetime'}},
         {'state': {'title': _('State'), 'type': 'dict', 'dict': State.dictionary()}},
         {'reason': {'title': _('Reason')}},
     ]
开发者ID:dkmstr,项目名称:openuds,代码行数:9,代码来源:user_services.py

示例2: getFields

# 需要导入模块: from uds.core.util.State import State [as 别名]
# 或者: from uds.core.util.State.State import dictionary [as 别名]
 def getFields(self, parent):
     return [
         {'name': {'title': _('Username'), 'visible': True, 'type': 'icon', 'icon': 'fa fa-user text-success'}},
         {'real_name': {'title': _('Name')}},
         {'comments': {'title': _('Comments')}},
         {'state': {'title': _('state'), 'type': 'dict', 'dict': State.dictionary()}},
         {'last_access': {'title': _('Last access'), 'type': 'datetime'}},
     ]
开发者ID:glyptodon,项目名称:openuds,代码行数:10,代码来源:users_groups.py

示例3: getFields

# 需要导入模块: from uds.core.util.State import State [as 别名]
# 或者: from uds.core.util.State.State import dictionary [as 别名]
 def getFields(self, parent):
     return [
         {'creation_date': {'title': _('Creation date'), 'type': 'datetime'}},
         {'pool_name': {'title': _('Pool')}},
         {'unique_id': {'title': 'Unique ID'}},
         {'ip': {'title': _('IP')}},
         {'friendly_name': {'title': _('Friendly name')}},
         {'state': {'title': _('status'), 'type': 'dict', 'dict': State.dictionary()}},
         {'in_use': {'title': _('In Use')}},
         {'source_host': {'title': _('Src Host')}},
         {'source_ip': {'title': _('Src Ip')}},
         {'owner': {'title': _('Owner')}},
         {'actor_version': {'title': _('Actor version')}}
     ]
开发者ID:dkmstr,项目名称:openuds,代码行数:16,代码来源:meta_service_pools.py


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