diff --git a/progit/templates/user_info.html b/progit/templates/user_info.html new file mode 100644 index 0000000..5c3d267 --- /dev/null +++ b/progit/templates/user_info.html @@ -0,0 +1,52 @@ +{% extends "master.html" %} + +{% block title %}Home{% endblock %} +{%block tag %}home{% endblock %} + + +{% block content %} + +

{{ username }}

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