summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/user_profile.html
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2012-12-10 12:25:38 +0100
committerAurélien Bompard <aurelien@bompard.org>2012-12-10 12:25:38 +0100
commit0a8e5ee78fb231606a0b43f6688aca47e941d91c (patch)
tree6ca9f83c9706430d72224c928feeb41d5ef55d23 /hyperkitty/templates/user_profile.html
parentc29c544ad61059f2360845b48f4f44b76687d153 (diff)
downloadhyperkitty-0a8e5ee78fb231606a0b43f6688aca47e941d91c.tar.gz
hyperkitty-0a8e5ee78fb231606a0b43f6688aca47e941d91c.tar.xz
hyperkitty-0a8e5ee78fb231606a0b43f6688aca47e941d91c.zip
Non-code changes (license texts, indentation, etc.)
Diffstat (limited to 'hyperkitty/templates/user_profile.html')
-rw-r--r--hyperkitty/templates/user_profile.html60
1 files changed, 31 insertions, 29 deletions
diff --git a/hyperkitty/templates/user_profile.html b/hyperkitty/templates/user_profile.html
index 11c8292..675f7fa 100644
--- a/hyperkitty/templates/user_profile.html
+++ b/hyperkitty/templates/user_profile.html
@@ -3,40 +3,40 @@
{% load hk_generic %}
{% block content %}
- <h1>User Profile <span>- {{ user }}</span></h1>
+ <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>
+ <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>
+ <th>{% trans 'Email' %}</th>
+ <td>{{ user.email }}</td>
+ </tr>
<tr>
- <th>{% trans 'Karma' %}</th>
- <td>{{ user_profile.karma }}</td>
- </tr>
+ <th>{% trans 'Karma' %}</th>
+ <td>{{ user_profile.karma }}</td>
+ </tr>
<tr>
- <th>{% trans 'Date Joined' %}</th>
- <td>{{ user.date_joined }}</td>
- </tr>
- </tbody>
- </table>
+ <th>{% trans 'Date Joined' %}</th>
+ <td>{{ user.date_joined }}</td>
+ </tr>
+ </tbody>
+ </table>
- {% if use_mockups %}
+ {% if use_mockups %}
- <h3> Up Votes : </h3>
+ <h3> Up Votes : </h3>
<ul>
{% for vote in votes_up %}
<li>
@@ -66,7 +66,9 @@
{% endfor %}
</ul>
- {% endif %}
+ {% endif %}
{% endblock %}
+
+{# vim: set noet: #}