From a0b95dc2dfb84c682bb8f677e5d471f84e5028fe Mon Sep 17 00:00:00 2001 From: luxagraf Date: Wed, 14 Nov 2018 13:17:42 -0600 Subject: wrote out basic notes skeleton --- design/templates/accounts/profile.html | 54 ++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 design/templates/accounts/profile.html (limited to 'design/templates/accounts') diff --git a/design/templates/accounts/profile.html b/design/templates/accounts/profile.html new file mode 100644 index 0000000..c47e6c6 --- /dev/null +++ b/design/templates/accounts/profile.html @@ -0,0 +1,54 @@ +{% extends 'base.html' %} +{% block content %} +
+

Account Settings

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Username{{object.user.username}} +
Email{{object.user.email}} + Change
Fullname{{object.user.first_name}} {{object.user.last_name}} + Change
Plan{{object.plan}} + Change
Credit Card{{object.credit_card}} + Change
Bio{{object.bio}} + Change
Photo{{object.photo}} + Change
Website{{object.website}} + Change
Location{{object.location}} + Change
+
+{% endblock %} -- cgit v1.2.3