${s.searchbox(url('accounts-search'), [('d', c.d)]) if c.d else s.searchbox(url('accounts-search'))}
${h.checkbox('checkall')} | ${_('Username')} | ${_('Full names')} | ${_('Email address')} | ${_('Status')} | ${_('Actions')} | ||
---|---|---|---|---|---|---|---|
${h.checkbox('accountid', value=user.id, class_='selector')} | ${h.link_to(user_icon, url('account-detail', userid=user.id))} | ${h.link_to(user.username, url('account-detail', userid=user.id))} | ${user.firstname} ${user.lastname} | ${h.link_to(user.email, url('account-detail', userid=user.id))} | ${functions.item_status(user.active)} | ${h.link_to(h.literal(''), url('account-edit', userid=user.id))} | ${h.link_to(h.literal(''), url('account-delete', userid=user.id))} |
${_('No accounts found matching: %s') % c.q} |
${_('Showing results %(i)d to %(l)d of %(count)d') % dict(i=c.page.first_item, l=c.page.last_item, count=c.page.item_count)}.
${_('No items found matching: %s') % c.q}
% endif % if c.page.next_page != c.page.first_page and c.page.page != c.page.first_page: ${h.link_to(h.literal(''), url.current(p=c.page.first_page, q=c.q, **kwd))} ... % endif % if c.page.previous_page: ${h.link_to(h.literal(''), url.current(p=c.page.previous_page, q=c.q, **kwd))} % endif % for linkpage in page_nums: % if linkpage == c.page.page: ${linkpage} % else: ${h.link_to(h.literal(linkpage), url.current(p=linkpage, q=c.q, **kwd))} % endif % endfor % if c.page.next_page: ${h.link_to(h.literal(''), url.current(p=c.page.next_page, q=c.q, **kwd))} % endif % if c.page.next_page != c.page.page_count and c.page.page != c.page.page_count and c.page.page_count != 0: ... ${h.link_to(h.literal(''), url.current(p=c.page.page_count, q=c.q, **kwd))} % endif % if c.page.page_count != 0: