summaryrefslogtreecommitdiff
path: root/src/templates/apps/room/launch.html
blob: 145d47540b16bdf38346c10ef884d28bb5f12e98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{% 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.
				{%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/>
	<ul class="ilist">
	    {%if room.nhosts == 0 %}
		<li class="button"><a href="{% prefix %}/accounts/login-federated?next=/promote/{{room.id}}">Enter as Host</a></li>
		{% endif %}
		<li class="button"><a href="{% prefix %}/launch/{{room.id}}">Enter</a></li>
	</ul>
{% endblock %}