From 10f4416a8b5c66bd168c697cce200c06c1602173 Mon Sep 17 00:00:00 2001 From: Ivlev Denis Date: Tue, 30 Jan 2018 22:20:39 +0300 Subject: [PATCH] LIL-106. Add user profile template --- apps/user/templates/user/profile.html | 92 +++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 apps/user/templates/user/profile.html diff --git a/apps/user/templates/user/profile.html b/apps/user/templates/user/profile.html new file mode 100644 index 00000000..2142dca5 --- /dev/null +++ b/apps/user/templates/user/profile.html @@ -0,0 +1,92 @@ +{% extends "templates/lilcity/index.html" %} {% load static %} {% block content %} +
+
+
+ Редактировать + {% if user.photo %} +
+ +
+ {% else %} +
+ +
+ {% endif %} +
+
{{ user.get_full_name }}
+ +
+
+ {{ user.about }} +
+ +
+
+
+
+
+
+
+ + +
+
+
+
+
+ {% include "course/course_items.html" with course_items=paid %} +
+
+
+
+
+
+ {% include "course/course_items.html" with course_items=published %} +
+
+
+
+
+
+
+{% endblock content %} \ No newline at end of file