summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2011-05-11 15:17:03 +0200
committerLeif Johansson <leifj@sunet.se>2011-05-11 15:17:03 +0200
commit71cf40b9dc8b0ecacf08c5f2dd1140c2022674f9 (patch)
tree98dea1679364d297182cc2feabbd9724d248cd98
parent0c82a51adc561d9ffad0185ec50ceb28ad6f4e7b (diff)
launch page
-rw-r--r--src/templates/apps/room/launch.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/templates/apps/room/launch.html b/src/templates/apps/room/launch.html
new file mode 100644
index 0000000..cc80ca6
--- /dev/null
+++ b/src/templates/apps/room/launch.html
@@ -0,0 +1,28 @@
+{% extends "base.html" %}
+{% load datehumanize %}
+{% load prefix %}
+{% block widgets %}
+{% endblock %}
+{% block content %}
+ <h1>Entering {{room.name}}</h1>
+ <div class="ui-widget">
+ <div class="ui-state-highlight ui-corner-all" style="margin-top: 20px; padding: 0 .7em; width: 80%">
+ <p><span class="ui-icon ui-icon-info" style="float: left; margin-right: .3em;"></span>
+ <strong>Note</strong>
+ You are about to enter the meeting room '{{room.name}}'.
+ {%if room.nusers == 0 %}You are the first user to enter the room. If you are hosting this meeting and are comfortable with
+ the Adobe Connect software you may press 'Enter as Host' below.
+ {%else%}
+ There are {{room.nusers}} other participants in the room.
+ {% endif %}
+ </p>
+ </div>
+ </div>
+ <br/>
+ <ul class="ilist">
+ {%if room.nusers == 0 %}
+ <li class="button"><a href="{% prefix %}/promote/{{room.id}}">Enter as Host</a></li>
+ {% endif %}
+ <li class="button"><a href="{% prefix %}/launch/{{room.id}}">Enter</a></li>
+ </ul>
+{% endblock %} \ No newline at end of file