## listusers.html - creates a table of users, each row having a link to /edit/edituser/ ## Also includes buttons and text showing links to previous and next pages which are hidden or shown ## as required. Note the logic has pages starting at zero, so the legends here add one to show pages ## starting at one.
% for row in users: % for item in row: % endfor % endfor
Username Full name Authorisation Edit this user
${item}
% if prevpage < thispage:
% else:
% endif
% if lastpage:

Page ${thispage+1} of ${lastpage+1}

% endif % if nextpage > thispage:
% else:
% endif