summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2011-02-21 22:03:08 +0100
committerLeif Johansson <leifj@sunet.se>2011-02-21 22:03:08 +0100
commiteaaa685da22be10c429bda1706add1e442a83640 (patch)
tree068acb942837b91a75f763a4df2a33766f8d48be /templates
parentedc86859e755d949919d4cf9fd82689ae31e60ef (diff)
remove broken twisted dependency
Diffstat (limited to 'templates')
-rw-r--r--templates/apps/userprofile/home.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/apps/userprofile/home.html b/templates/apps/userprofile/home.html
index 34673db..d7f449d 100644
--- a/templates/apps/userprofile/home.html
+++ b/templates/apps/userprofile/home.html
@@ -1,4 +1,5 @@
{% extends "tree.html" %}
+{% load datehumanize %}
{% block widgets %}
$("#gravatar").append($.gravatar($('#email').text()));
$("#names").accordion({
@@ -19,7 +20,7 @@
<div id="m{{m.id}}" class="{{m.status}}">
<h3 class="listheader">{{m.name.shortname}}</h3>
<div>
- You have been a member of <a href="/name/id/{{m.name.id}}">{{m.name.shortname}}</a> since {{m.timecreated}}
+ You became a member of <a href="/name/id/{{m.name.id}}">{{m.name.shortname}}</a> {{m.timecreated|datehumanize}}
</div>
</div>
{% empty %}
@@ -32,7 +33,7 @@
<div id="n{{n.id}}">
<h3 class="listheader">{{n.shortname}}</h3>
<div>
- You are allowed to {{p}} <a href="/name/id/{{n.id}}">{{n.shortname}}</a>
+ <a href="/name/id/{{n.id}}">{{n.shortname}}</a>
</div>
</div>
{% empty %}