From 64ffed99973417576e59741491443e5bfbd0f97c Mon Sep 17 00:00:00 2001 From: Aamir Khan Date: Mon, 25 Jun 2012 22:13:53 -0400 Subject: Basic user profile --- templates/user_profile.html | 32 ++++++++++++++++++++++++++++---- 1 file changed, 28 insertions(+), 4 deletions(-) diff --git a/templates/user_profile.html b/templates/user_profile.html index a4c21e9..67ece00 100644 --- a/templates/user_profile.html +++ b/templates/user_profile.html @@ -1,7 +1,31 @@ {% extends "base.html" %} +{% load i18n %} {% block content %} -

- User profiles are under contruction. -

-{% endblock %} \ No newline at end of file +

User Profile - {{ user }}

+ + + + + + + + + + + + + + + + + + + + + + + + +
{% trans 'User name' %}{{ user.username}}
{% trans 'Firstname' %}{{ user.first_name }}
{% trans 'Lastname' %}{{ user.last_name }}
{% trans 'Email' %}{{ user.email }}
{% trans 'Karma' %}
+{% endblock %} -- cgit