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

@{
    ViewBag.Title = "certificatereport";
}
<script type="text/javascript" src="/static/js/index/certificatereport.js"></script>
<h2>On-Demand Certificate Report</h2>
<h2 class="floatleft">Meeting Sessions</h2>
<h3 class="floatright"><a class="backlink" href="/Index/elucidat">Back to Courses</a></h3>
<hr/>
<table id="certificateReportTable" class="display">
    <thead>
        <tr>
            <th>Name</th>
            <th>Course</th>
            <th>Purchase Date</th>
            <th>Certificate Date</th>
            <th>Overridden?</th>
        </tr>
    </thead>
    <tbody>
        @foreach (var earnedCert in Model)
        {
            <tr>
                <td class="cell">@earnedCert.Name</td>
                <td class="cell namecell" style="white-space:normal;">@earnedCert.Course</td>
                <td class="cell datecell">@earnedCert.pDate.ToShortDateString()</td>
                <td class="cell datecell">@earnedCert.cDate</td>
                <td class="cell">@if ((bool) earnedCert.isForced){<text>Yes</text>}</td>
            </tr>
        }
    </tbody>
</table>

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

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

initial commit