bigbluebutton-Github/bigbluebutton-web/grails-app/views/publicScheduledSession/show.gsp
Fred Dixon d48a25ec4a modify text of join screen
git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@1484 af16638f-c34d-0410-8cfa-b39d5352b314
2009-05-29 00:40:35 +00:00

97 lines
4.2 KiB
Plaintext

<%@ page import="org.bigbluebutton.web.domain.ScheduledSession" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="layout" content="main" />
<title>Show ScheduledSession</title>
</head>
<body>
<div class="nav">
<span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
</div>
<div class="body">
<h1>Information on ${scheduledSessionInstance.name}</h1>
<g:if test="${flash.message}">
<div class="message">${flash.message}</div>
</g:if>
<div class="dialog">
<table>
<tbody>
<tr class="prop">
<td valign="top" class="name">Session:</td>
<td valign="top" class="value">${fieldValue(bean:scheduledSessionInstance, field:'name')}</td>
</tr>
<tr class="prop">
<td valign="top" class="name">Description:</td>
<td valign="top" class="value">${fieldValue(bean:scheduledSessionInstance, field:'description')}</td>
</tr>
<tr class="prop">
<td valign="top" class="name">Voice Conference Bridge:</td>
<td valign="top" class="value">${fieldValue(bean:scheduledSessionInstance, field:'voiceConferenceBridge')}</td>
</tr>
<tr class="prop">
<td valign="top" class="name">Link:</td>
<td valign="top" class="value">
<g:if test="${inSession}">
<a href="${hostUrl}/client/BigBlueButton.html">CLICK HERE TO JOIN</a>
</g:if>
<g:else>
<a href="${hostUrl}/client/BigBlueButton.html">CLICK HERE TO PLAY</a>
</g:else>
</td>
</tr>
<tr class="prop">
<td valign="top" class="name">Start Date Time:</td>
<td valign="top" class="value">
<g:formatDate format="EEE, d MMM yyyy 'at' hh:mm aaa" date="${scheduledSessionInstance.startDateTime}"/>
</td>
</tr>
<tr class="prop">
<td valign="top" class="name">End Date Time:</td>
<td valign="top" class="value">
<g:formatDate format="EEE, d MMM yyyy 'at' hh:mm aaa" date="${scheduledSessionInstance.endDateTime}"/>
</td>
</tr>
<tr class="prop">
<td valign="top" class="name">Conference:</td>
<td valign="top" class="value">
${scheduledSessionInstance?.conference?.name.encodeAsHTML()}</td>
</tr>
<tr class="prop">
<td valign="top" class="name"><b>NOTE:</b></td>
<td valign="top" class="value">
If the client does not load after clicking JOIN, refresh button your browser.</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>