本文整理匯總了Python中uliweb.utils.generic.ListView.types_convert_map方法的典型用法代碼示例。如果您正苦於以下問題:Python ListView.types_convert_map方法的具體用法?Python ListView.types_convert_map怎麽用?Python ListView.types_convert_map使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類uliweb.utils.generic.ListView
的用法示例。
在下文中一共展示了ListView.types_convert_map方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: _get_users_list_view
# 需要導入模塊: from uliweb.utils.generic import ListView [as 別名]
# 或者: from uliweb.utils.generic.ListView import types_convert_map [as 別名]
def _get_users_list_view(self, c):
from uliweb.utils.generic import ListView
from uliweb.orm import get_model
from uliweb import request
from uliweb.core.html import Tag
from uliweb import orm
def username(value, obj):
return str(Tag('a', value, href='/users/view/%d' % obj.id))
def boolean_convert(b, obj):
if b:
return '<div class="ui-icon ui-icon-check"></div>'
else:
return '<div class="ui-icon ui-icon-closethick"></div>'
pageno = int(request.values.get('page', 1)) - 1
rows_per_page = int(request.values.get('rows', settings.get_var('PARA/ROWS_PER_PAGE', 10)))
User = get_model('user')
query = None
condition = None
if c.get('username'):
condition = (User.c.username.like('%'+c['username']+'%')) & condition
fields_convert_map = {'username':username}
view = ListView(User, condition=condition, query=query,
rows_per_page=rows_per_page, pageno=pageno,
fields_convert_map=fields_convert_map, id='users_table')
view.types_convert_map = {orm.BooleanProperty:boolean_convert}
return view