summaryrefslogtreecommitdiff
path: root/templates/apps
diff options
context:
space:
mode:
Diffstat (limited to 'templates/apps')
-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 %}