Git Repository Public Repository

CPE_learningsite

URLs

Copy to Clipboard

This repository has no backups
This repository's network speed is throttled to 100KB/sec

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
@model CPE.App.Web.Models.MeetingSession
@{
    ViewBag.Title = "Rebroadcast Schedule";
}
<link rel="stylesheet" href="/static/css/redmond/jquery-ui-1.9.1.custom.min.css"/>
<script type="text/javascript" src="/static/js/jquery-ui-1.9.1.custom.min.js"></script>
<script type="text/javascript" src="/static/js/jquery.timePicker.min.js"></script>
<script type="text/javascript" src="/static/js/jquery.dictionary-1.2.js"></script>
<script type="text/javascript" src="/static/js/jquery.validate.min.js"></script>
<script type="text/javascript" src="/static/js/rebroadcast/rebroadcastschedule.js"></script>

<span class="floatright"><a class="backlink" href="/sessiondetails/@Model.MeetingSessionKey">Back to Session Details</a></span>
<h2>Rebroadcast Schedule - <span class="italic">@Model.Name</span></h2>
<hr/>

    @{
        Html.RenderAction("RebroadcastSessions", "Rebroadcast", new { meetingSessionKey = Model.MeetingSessionKey });
    }

<div class="clear"></div>
<br />
<br />
<hr/>
<div>
    <h3>Create Rebroadcast Session</h3>
    @using (Html.BeginForm("PublishRecording", "Rebroadcast", FormMethod.Get))
    {
        <table style="width:100%;">
            <tr>
                <td>
                    <label for="Date">Rebroadcast Date</label>                              
                </td>
                <td style="width:85%;">
                    <input type="text" class="datepicker required" id="Date" name="Date" autocomplete="off"/>
                    <label for="StartTime">From</label>
                    <input type="text" class="timepicker required" id="StartTime" name="StartTime" autocomplete="off"/>
                    <label for="EndTime">to</label>
                    <input type="text" class="timepicker required" id="EndTime" name="EndTime" autocomplete="off"/>                       
                </td>
            </tr>
            <tr>
                <td>
                    <label for="passcode">Passcode</label>
                </td>
                <td style="width:85%;">
                    <input type="text"  id="passcode" name="passcode" autocomplete="off" style="width:175px;"/>
                </td>
            </tr>
            <tr>
                <td>
                    <label for="surveyLink">Q&amp;A Survey Link</label>
                </td>
                <td style="width:85%;">
                    <input type="url" class="required url" id="surveyLink" name="surveyLink" autocomplete="off" style="width:90%;"/>
                </td>
            </tr>
        </table>
        <input type="hidden" id="meetingSessionKey" name="meetingSessionKey" value="@Model.MeetingSessionKey"/>
        <br/>
        <br/>
        <input type="button" id="btnSubmit" value="Create Rebroadcast" disabled="disabled"/>
    }
</div>

Commits for CPE_learningsiteCPE/CPE.App/CPE.App.Web/Views/rebroadcast/rebroadcastschedule.cshtml

Diff revisions: vs.
Revision Author Commited Message
4cd176 ... v.shishlov Fri 27 Aug, 2021 14:33:17 +0000

initial commit