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
@model List<CPE.App.Web.Models.RecordingSession>

<div id="scheduled_rebroadcasts">
    <h3>Scheduled Rebroadcasts</h3>
    <table id="rebroadcastSessionsTable" class="display">
        <thead>
            <tr>
                <th>Name</th>
                <th>Date</th>
                <th>Start</th>
                <th>End</th>
                <th>Duration</th>
                <th>Connect Url</th>
                <th>Passcode</th>
                <th>Remove</th>
            </tr>
        </thead>
        <tbody>
            @foreach(var recordingSession in Model)
            {
                <tr>
                    <td class="cell namecell"><a href="/rebroadcast/rebroadcastpauses/@recordingSession.RecordingKey" title="Click to edit reboadcast pauses">@recordingSession.Name</a></td>
                    <td class="cell datecell">@CPE.App.Web.Code.Extensions.GetLocalDateTime(recordingSession.StartTime).ToString("MM/dd/yyyy")</td>
                    <td class="cell datecell">@CPE.App.Web.Code.Extensions.GetLocalDateTime(recordingSession.StartTime).ToString("hh:mm tt")</td>
                    <td class="cell datecell">@CPE.App.Web.Code.Extensions.GetLocalDateTime(recordingSession.EndTime).ToString("hh:mm tt")</td>
                    <td class="cell numbercell">@recordingSession.DurationTimespan</td>
                    <td class="cell">@recordingSession.RecordingUrl</td>
                    <td class="cell">@recordingSession.Passcode</td>
                    <td>@*@if(recordingSession.StartTime > DateTime.UtcNow)
                        {*@
                            <a class="delete_link" href="javascript:void(0);" recordingkey="@recordingSession.RecordingKey">Delete</a>
                        @*}*@
                    </td>
                </tr>
            }
        </tbody>
    </table>
</div>
<script type="text/javascript" src="/static/js/rebroadcast/rebroadcastSessions.js"></script>

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

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

initial commit