initial commit
[CPE_learningsite] / CPE / CPE.App / CPE.App.Web / Views / Index / webcastcertificatereport.cshtml
1 @model List<CPE.App.Web.Models.WebcastCertficateDataResult>
2
3 @{
4     ViewBag.Title = "certificatereport";
5 }
6 <script type="text/javascript" src="/static/js/index/certificatereport.js"></script>
7 <h2>Webcast Certificate Report</h2>
8 <span class="floatright"><a class="backlink" href="/">Back to Sessions</a></span>
9 <hr />
10 <table id="certificateReportTable" class="display">
11     <thead>
12         <tr>
13             <th>Name</th>
14             <th>Webcast</th>
15             <th>Webcast Date</th>
16             <th>Credits</th>
17             <th>Overridden?</th>
18         </tr>
19     </thead>
20     <tbody>
21         @foreach (var earnedCert in Model)
22         {
23             <tr>
24                 <td class="cell namecell">@earnedCert.Name</td>
25                 <td class="cell datecell">@earnedCert.MeetingName</td>
26                 <td class="cell numbercell">@earnedCert.mDate.ToShortDateString()</td>
27                 <td class="cell numbercell">@earnedCert.Credits</td>
28                 <td class="cell namecell">@if (earnedCert.isForced) {<text>Yes</text>}</td>
29             </tr>
30         }
31     </tbody>
32 </table>
33