summaryrefslogtreecommitdiff
path: root/templates/apps/room/launch.html
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2012-10-04 15:39:08 +0200
committerLeif Johansson <leifj@sunet.se>2012-10-04 15:39:08 +0200
commit2bdad0ae7a3a6e4ec5116becd39910388b679ed2 (patch)
tree5afdfba0a93c1af50d53bdc245d57cc4053e109a /templates/apps/room/launch.html
parent873e7823970352d591deee5f67f47c5436ee0e84 (diff)
restructure
Diffstat (limited to 'templates/apps/room/launch.html')
-rw-r--r--templates/apps/room/launch.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/templates/apps/room/launch.html b/templates/apps/room/launch.html
new file mode 100644
index 0000000..204345d
--- /dev/null
+++ b/templates/apps/room/launch.html
@@ -0,0 +1,34 @@
+{% extends "base.html" %}
+{% load datehumanize %}
+{% block widgets %}
+{% endblock %}
+{% block content %}
+ <div class="page-header">
+ <h1>Entering {{room.name}}</h1>
+ </div>
+ <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.
+ {%else%}
+ There are {{room.nusers}} other participants in the room right now.
+ {% endif %}
+ {%if room.nhosts == 0 %} There are no hosts in the room right now. This means that the participants in the room may not be able to make full use of the room.
+ If you are hosting this meeting and are comfortable with the Adobe Connect software you may press 'Enter as Host' below to become the first host.
+ {% endif %}
+ </p>
+ </div>
+ </div>
+ <br/>
+ <div>
+ <a class="btn btn-large" href="/rooms#{{room.id}}">Cancel</a>
+ {%if room.nhosts == 0 %}
+ <a class="btn btn-large btn-success" href="/accounts/login-federated?next=/promote/{{room.id}}">Enter as Host</a>
+ {% endif %}
+ <a class="btn btn-large btn-primary" href="/launch/{{room.id}}">Enter as Participant</a>
+
+ </div>
+{% endblock %} \ No newline at end of file