+
+
diff --git a/templates/results.html b/templates/results.html
deleted file mode 100644
index 193f1e6..0000000
--- a/templates/results.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-
-
${t['title']}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- % if not results:
-
Ainda não há resultados
-
- % else:
-
-
-
- # |
- Nome |
- Nota |
- |
-
-
-
- <%!
- from datetime import datetime
- %>
- % for r in results:
-
-
- % if loop.index == 0:
-
-
- 1º
-
-
- % else:
-
- ${loop.index+1}
-
- % endif
- |
-
-
- % if loop.index == 0:
- ${r[1]}
- % else:
- ${r[1]}
- % endif
- |
-
-
- % if r[2] < 10:
-
- % elif r[2] < 15:
-
- % else:
-
- % endif
- ${'{:.1f}'.format(r[2])}
-
-
- |
-
- <%
- dt = datetime.now() - datetime.strptime(r[3], '%Y-%m-%d %H:%M:%S.%f')
- %>
-
- % if dt.days > 0:
- ${dt.days}d
- % elif dt.seconds >= 3600:
- ${dt.seconds // 3600}h
- % elif dt.seconds >= 60:
- ${dt.seconds // 60}m
- % else:
- ${dt.seconds}s
- % endif
-
-
- |
-
- % endfor
-
-
- % endif
-
-
-
-
diff --git a/templates/students.html b/templates/students.html
deleted file mode 100644
index 2a6debe..0000000
--- a/templates/students.html
+++ /dev/null
@@ -1,134 +0,0 @@
-
-
-
-
-
-
-
List of students
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${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
-
-
-
-
-
-
-
diff --git a/templates/test.html b/templates/test.html
index d01dcad..6c758d8 100644
--- a/templates/test.html
+++ b/templates/test.html
@@ -2,9 +2,9 @@
-
-
-
Teste
+
+
+
Teste
--
libgit2 0.21.2