diff --git a/progit/templates/user_list.html b/progit/templates/user_list.html new file mode 100644 index 0000000..6fff30d --- /dev/null +++ b/progit/templates/user_list.html @@ -0,0 +1,49 @@ +{% extends "master.html" %} + +{% block title %}Users{% endblock %} +{%block tag %}users{% endblock %} + + +{% block content %} + +

Users

+ +{% if total_page %} + + + + + + +
+ {% if page > 1%} + + < Previous + + {% else %} + < Previous + {% endif %} + {{ page }} / {{ total_page }} + {% if page < total_page %} + + Next > + + {% else %} + Next > + {% endif %} +
+{% endif %} + +
+ +
+ +{% endblock %}