summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2011-05-12 13:06:36 +0200
committerLeif Johansson <leifj@sunet.se>2011-05-12 13:06:36 +0200
commit7bb8b1301c882c7fd36d69888b4721f14f82e317 (patch)
tree076a0a9b1b81157ac1d10fa75f7e833182041f26
parentd896baf6c2b896f61904ee9c8cb035765c81de2a (diff)
stack em up differently in the list
-rw-r--r--src/templates/apps/room/list.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/templates/apps/room/list.html b/src/templates/apps/room/list.html
index 69e17c9..79df4ca 100644
--- a/src/templates/apps/room/list.html
+++ b/src/templates/apps/room/list.html
@@ -28,13 +28,13 @@
<h3 class="listheader">{{r.name}}</h3>
<div>
{% tags_for_object r as tags %}
+ <p><a href="{{r|roomurl}}">{{r|roomurl}}<span style="vertical-align: bottom;" class="ui-icon ui-icon-extlink"></span></a></p>
<p class="infopanel ui-widget ui-corner-all ui-state-highlight">{% if r.description %}{{r.description|safe}}{% else %}<em>No description available...</em>{% endif %}</p>
- <ul class="nlist square">
+ <ul class="nlist square" style="padding-left: 10px;">
<li style="margin-top: 5px;">Tags: {% for tag in tags %}<a style="margin-right: 5px;" class="ui-widget" href="{% prefix %}/room/+{{tag}}">{{tag}}</a>{% endfor %} {%if edit %}<a style="font-size: 75%;" href="{% prefix %}/room/{{r.id}}/tag"><em>... manage room tags</em></a>{%endif%}</li>
<li>Created by {{r.creator}} {{r.timecreated|datehumanize}}.</li>
{% if r.self_cleaning %}<li>Room will be reset when empty.</li>{%else%}<li>Room state is preserved between sessions.</li>{% endif %}
{% if r.lastvisited %}<li>Last visited {{r.lastvisited|datehumanize}}</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>
<li>Hosted on {{r.acc.name}}</li>
</ul>
<br/>