${len(tags['finished'])} Terminado(s)
Número |
Nome |
Login |
Logout |
Nota |
% for r in grades:
% if r[0] in tags['finished']:
${r[0]} |
${r[1]} |
${r[3][:19]} |
${r[4][:19]} |
${r[2]} |
% endif
% endfor
${len(tags['online'])} Activo(s)
Número |
Nome |
% for r in students:
% if r[0] in tags['online']:
${r[0]} |
${r[1]} |
% endif
% endfor
${len(students)-len(tags['online'])} Inactivo(s)
Número |
Nome |
Password |
% for r in students:
% if r[0] not in tags['online']:
${r[0]} |
${r[1]} |
|
% endif
% endfor