summaryrefslogtreecommitdiff
path: root/templates/profile/view.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/profile/view.html')
-rw-r--r--templates/profile/view.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/templates/profile/view.html b/templates/profile/view.html
index 277a4a1..501de2e 100644
--- a/templates/profile/view.html
+++ b/templates/profile/view.html
@@ -1,9 +1,10 @@
{% extends 'base.html' %}
{% block content %}
-username: {{user.username}} <br />
-gender: {{profile.gender}} <br />
+Name: {{profile.full_name}} <br />
+Username: {{user.username}} <br />
+Gender: {{profile.gender}} <br />
About Me: {{profile.aboutme}} <br />
-address: {{profile.address}} <br />
-phone number: {{profile.phonenum}} <br />
+Address: {{profile.address}} <br />
+Phone Number: {{profile.phonenum}} <br />
<a href="/profile/edit">Edit profile</a>
{% endblock %}