From 9fa6941d2e811a335477dc0270cde30e9d48a62a Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Sat, 10 Jul 2010 01:58:40 +0200 Subject: list user writable nodes --- templates/apps/userprofile/home.html | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'templates/apps') diff --git a/templates/apps/userprofile/home.html b/templates/apps/userprofile/home.html index d769f6b..d635e53 100644 --- a/templates/apps/userprofile/home.html +++ b/templates/apps/userprofile/home.html @@ -6,13 +6,17 @@ $(function() { $("#memberships").accordion({ header: 'h3' }); + $("#names").accordion({ + header: 'h3' + }); }); {% endblock %} {% block headline %}{{profile.display_name}}{% endblock %} {% block title %}COIP - {{profile.display_name}} - Home{% endblock %} {% block main %} -
+

Memberships

+
{% for m in memberships %}

{{m.name.shortname}}

@@ -24,4 +28,16 @@ $(function() {
{% endfor %}
+

Names

+
+ {% for n,p in names %} +
+

{{n.shortname}}

+
+ You are allowed to {{p}} {{n.shortname}}
+ More details about {{n.shortname}}... +
+
+ {% endfor %} +
{% endblock %} \ No newline at end of file -- cgit v1.1