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


Python Common.pluralize方法代码示例

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


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

示例1: get_display

# 需要导入模块: from pyasm.common import Common [as 别名]
# 或者: from pyasm.common.Common import pluralize [as 别名]
    def get_display(self):

        from tactic.ui.panel import ViewPanelWdg, CustomLayoutWdg

        top = self.top

        detail_view = self.kwargs.get("detail_view")
        if detail_view:
            self.kwargs['view'] = detail_view
            layout = CustomLayoutWdg(**self.kwargs)
        else:
            top.add_style("margin: 20px")

            day = self.kwargs.get("day")
            title = self.kwargs.get("st_title")
            title = Common.pluralize(title)

            title_wdg = DivWdg()
            top.add(title_wdg)
            title_wdg.add("<div style='font-size: 25px'>%s for date: %s</div>" % (title, day))
            title_wdg.add("List of %s on this day." % title)
            title_wdg.add("<hr/>")

            self.kwargs['show_shelf'] = False

            layout = ViewPanelWdg(**self.kwargs)

        top.add(layout)





        return top
开发者ID:mincau,项目名称:TACTIC,代码行数:36,代码来源:sobject_calendar_wdg.py

示例2: get_display

# 需要导入模块: from pyasm.common import Common [as 别名]
# 或者: from pyasm.common.Common import pluralize [as 别名]
    def get_display(my):

        from tactic.ui.panel import ViewPanelWdg

        top = my.top
        top.add_style("margin: 20px")

        day = my.kwargs.get("day")
        title = my.kwargs.get("st_title")
        title = Common.pluralize(title)

        title_wdg = DivWdg()
        top.add(title_wdg)
        title_wdg.add("<div style='font-size: 25px'>%s for date: %s</div>" % (title, day))
        title_wdg.add("List of %s that are due on this day." % title)
        title_wdg.add("<hr/>")

        my.kwargs['show_shelf'] = False

        layout = ViewPanelWdg(**my.kwargs)
        top.add(layout)


        return top
开发者ID:0-T-0,项目名称:TACTIC,代码行数:26,代码来源:sobject_calendar_wdg.py


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