diff options
author | Leif Johansson <leifj@sunet.se> | 2011-05-10 09:44:56 +0200 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2011-05-10 09:44:56 +0200 |
commit | 4e14a262829b763a6bcbd7e8fc376b51c1094509 (patch) | |
tree | 5cbafe2fd4aa6f6a96debe88e20eb987d5e5e54c /src/templates/apps/room | |
parent | 4dccf3f3a8b06d47122e8e9ac995af0eee9bcec7 (diff) |
export session as random password to acp
Diffstat (limited to 'src/templates/apps/room')
-rw-r--r-- | src/templates/apps/room/list.html | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/src/templates/apps/room/list.html b/src/templates/apps/room/list.html index 2ec375e..6c39e12 100644 --- a/src/templates/apps/room/list.html +++ b/src/templates/apps/room/list.html @@ -10,7 +10,8 @@ event: "click", collapsible: true, navigation: true, - animated: true + animated: true, + autoHeight: false }); {% endblock %} {% block content %} @@ -21,12 +22,19 @@ <div id="{{r.id}}"> <h3 class="listheader">{{r.name}}</h3> <div> - <p>Created by {{r.creator}} {{r.timecreated|datehumanize}}.</p> - <p>Meeting room URL: <a href="{{r|roomurl}}">{{r|roomurl}}</a></p> - <ul class="ilist"> - <!-- li><div class="button"><a href="{% prefix %}/room/{{r.id}}/modify">Modify Room</a></li --> - <li><div class="button"><a href="{% prefix %}/room/{{r.id}}/delete">Delete Room</a></li> - </ul> + <ul> + <li>Created by {{r.creator}} {{r.timecreated|datehumanize}}.</li> + {% if r.lastvisited %}<li>Last visited {{r.lastvisited|datehumanize}}{% if r.user_count %}when there was {{r.user_count}} user{{r.user_count|pluralize}} in the room{%endif%}.</li>{%endif%} + <li>Meeting room URL: <a href="{{r|roomurl}}">{{r|roomurl}}<span style="vertical-align: bottom;" class="ui-icon ui-icon-extlink"></span></a></li> + </ul> + <br/> + {% if r.description %} + <p class="ui-widget">{{r.description|safe}}</p> + {% endif %} + <ul class="ilist"> + <!-- li><div class="button"><a href="{% prefix %}/room/{{r.id}}/modify">Modify Room</a></li --> + <li><div class="button"><a href="{% prefix %}/room/{{r.id}}/delete">Delete Room</a></li> + </ul> </div> </div> {% endfor %} |