summaryrefslogtreecommitdiff
path: root/src/templates/apps
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2011-05-10 23:23:20 +0200
committerLeif Johansson <leifj@sunet.se>2011-05-10 23:23:20 +0200
commitf2170da73142c4f4698177c1b7866fb18477bff9 (patch)
treefc74e0ceab98a413c42b2e8ccf1b3967fe4e3d62 /src/templates/apps
parent8fe8d48355f07ea19235e624b043743455ee5e09 (diff)
style polish
Diffstat (limited to 'src/templates/apps')
-rw-r--r--src/templates/apps/room/list.html26
-rw-r--r--src/templates/apps/room/tag.html13
2 files changed, 33 insertions, 6 deletions
diff --git a/src/templates/apps/room/list.html b/src/templates/apps/room/list.html
index fb47ca1..6423296 100644
--- a/src/templates/apps/room/list.html
+++ b/src/templates/apps/room/list.html
@@ -3,6 +3,7 @@
{% load datehumanize %}
{% load roomurl %}
{% load prefix %}
+{% load tagging_tags %}
{% block widgets %}
$("#rooms").accordion({
header: 'h3',
@@ -22,11 +23,26 @@
<div id="{{r.id}}">
<h3 class="listheader">{{r.name}}</h3>
<div>
- <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>
+ <ul class="ilist">
+ <li style="vertical-align: top;">
+ <ul class="nlist">
+ {% if r.self_cleaning %}<li>Room will be reset when empty.</li>{% endif %}
+ <li>Created by {{r.creator}} {{r.timecreated|datehumanize}}.</li>
+ {% if r.lastvisited %}<li>Last visited {{r.lastvisited|datehumanize}} when there was {{r.nusers}} user{{r.nusers|pluralize}} in the room.</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>
+ </li>
+ {% tags_for_object r as tags %}
+ <li style="vertical-align: top;">
+ <ul class="nlist">
+ <li>Room tags:
+ {% for tag in tags %}
+ <a href="{% prefix %}/+{{tag}}">{{tag}}</a>
+ {% endfor %} ... <a href="{% prefix %}/room/{{r.id}}/tag"><em>manage room tags</em></a></li>
+ </ul>
+ </li>
+ </ul>
+
<br/>
{% if r.description %}
<p class="ui-widget">{{r.description|safe}}</p>
diff --git a/src/templates/apps/room/tag.html b/src/templates/apps/room/tag.html
index d8c666e..6bf01a0 100644
--- a/src/templates/apps/room/tag.html
+++ b/src/templates/apps/room/tag.html
@@ -6,8 +6,19 @@
{% block widgets %}
{% endblock %}
+{% block beforefields %}
+<div class="ui-widget">
+ <div class="ui-state-highlight ui-corner-all" style="margin-top: 20px; padding: 0 .7em;">
+ <p><span class="ui-icon ui-icon-info" style="float: left; margin-right: .3em;"></span>
+ <strong>Note Well</strong>Tags are a way to group related rooms together. Tagging your
+ room makes your room show up in public lists of rooms hosted on this service and it
+ therefore makes your room more visible.</p>
+ </div>
+ </div>
+ <br/>
+{% endblock %}
{% block beforeform %}
- <h1>Tags for {{room.name}}</h1>
+ <h1>Current tags for {{room.name}}</h1>
{% if tags %}
<ul class="ilist">
{% for tag in tags %}