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
@model dynamic
@*@model List<CPE.App.Web.Models.OnDemanCoursesDataResult>*@
@*TODO This view will use the model from our db, not the api release model*@
@{
    ViewBag.Title = "On Demand Courses";
}
@*<script type="text/javascript" src="/static/js/index/index.js"></script>*@
<h2 class="floatright">On Demand Courses</h2>
<h3 class="floatleft">@Html.ActionLink("Meeting Sessions", "Index", "Index")</h3>
<hr />
<table id="onDemandCoursesTable" class="display">
    <thead>
        <tr>
            <th>Course</th>
            <th>Created Date</th>
            <th>Views</th>
            <th>Passes</th>
            <th>Fails</th>
            <th>Course Type (Content or Test) or Certificate?</th>
        </tr>
    </thead>
    <tbody>
        @*@foreach (var onDemandCourse in Model)
            {
                <tr>
                    <td class="cell namecell"><a href="/OnDemandCousedetails/@onDemandCourse.OnDemandCourseKey">@onDemandCourse.Name</a></td>
                    <td class="cell datecell">@OnDemandCouse.CreatedDate.GetValueOrDefault().ToString("MM/dd/yyyy")</td>
                    <td class="cell numbercell">@OnDemandCouse.ToString("hh:mm tt")</td>
                    <td class="cell numbercell">@OnDemandCouse.ToString("hh:mm tt")</td>
                    <td class="cell numbercell">@OnDemandCouse.TotalSessionTime.GetValueOrDefault()</td>
                    <td class="cell namecell">@OnDemandCouse.ActualSessionTime.GetValueOrDefault()</td>
                </tr>
            }*@
    </tbody>
</table>

Commits for CPE_learningsiteCPE/CPE.App/CPE.App.Web/Views/Courses/Index.cshtml

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

initial commit