From f3b0dbaa669159ec880848f7b70220791a1427fa Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Tue, 9 Oct 2012 08:40:44 +0200 Subject: - users own room --- templates/apps/auth/login.html | 4 ++-- templates/apps/room/launch.html | 5 ++++- templates/base.html | 6 ++++++ 3 files changed, 12 insertions(+), 3 deletions(-) (limited to 'templates') diff --git a/templates/apps/auth/login.html b/templates/apps/auth/login.html index e72e73a..6ac85c3 100644 --- a/templates/apps/auth/login.html +++ b/templates/apps/auth/login.html @@ -4,8 +4,8 @@ {% block content %}

Online Meetings

-

Welcome to the meeting tools. Either Login to manage +

Welcome to the meeting tools. Either Login to manage your meeting rooms and recordings, or ...

- Click here to Start a Meeting Now »» + Click here to Start a Meeting Now »»
{% endblock %} \ No newline at end of file diff --git a/templates/apps/room/launch.html b/templates/apps/room/launch.html index 54b30c4..a7b495c 100644 --- a/templates/apps/room/launch.html +++ b/templates/apps/room/launch.html @@ -18,12 +18,15 @@ 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 %}

+

+ The public URL of this room is {{BASE_URL}}go/{{room.id}}. Give this to other participants. +


- Cancel + {%if room.nhosts == 0 %} Enter as Host {% endif %} diff --git a/templates/base.html b/templates/base.html index ba3b06d..90d516e 100644 --- a/templates/base.html +++ b/templates/base.html @@ -43,6 +43,12 @@ $(function() { prettyPrint(); $(".submitter").submitter() + $(".cancel").each(function(that) { + that.click(function(ev) { + ev.preventDefault(); + document.location = document.referrer; + }) + }); {% block widgets %}{% endblock %} }); -- cgit v1.1