diff options
-rw-r--r-- | templates/user_profile.html | 32 |
1 files 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 %} -<p> - User profiles are under contruction. -</p> -{% endblock %}
\ No newline at end of file + <h1>User Profile <span>- {{ user }}</span></h1> + + <table class="table table-bordered table-striped mm_userData"> + <tbody> + <tr> + <th>{% trans 'User name' %}</th> + <td>{{ user.username}}</td> + </tr> + <tr> + <th>{% trans 'Firstname' %}</th> + <td>{{ user.first_name }}</td> + </tr> + <tr> + <th>{% trans 'Lastname' %}</th> + <td>{{ user.last_name }}</td> + </tr> + <tr> + <th>{% trans 'Email' %}</th> + <td>{{ user.email }}</td> + </tr> + <tr> + <th>{% trans 'Karma' %}</th> + <td></td> + </tr> + </tbody> + </table> +{% endblock %} |