diff options
| author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-25 23:53:50 -0400 |
|---|---|---|
| committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-25 23:53:50 -0400 |
| commit | acd28f3fe3ff6b9bf0b2e037b5d9d4915f3e2f13 (patch) | |
| tree | 1a896ad7e36f9aac6fe5109416b41c5c99effc85 /templates | |
| parent | 7a4fba4bbe23a9749ebda5db481c6f87e86ed677 (diff) | |
generating UserProfile model and populating 'karma' in user_profile.html
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/user_profile.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/user_profile.html b/templates/user_profile.html index 67ece00..fc2fdc4 100644 --- a/templates/user_profile.html +++ b/templates/user_profile.html @@ -24,7 +24,11 @@ </tr> <tr> <th>{% trans 'Karma' %}</th> - <td></td> + <td>{{ user_profile.karma }}</td> + </tr> + <tr> + <th>{% trans 'Date Joined' %}</th> + <td>{{ user.date_joined }}</td> </tr> </tbody> </table> |
