13 lines
364 B
Plaintext
13 lines
364 B
Plaintext
@model IEnumerable<Fab2ApprovalSystem.Models.Training>
|
|
@{IEnumerable<Fab2ApprovalSystem.Models.TrainingGroup> trainingGroups = ViewBag.TrainingGroups;}
|
|
@{
|
|
ViewBag.Title = "Training Reports";
|
|
Layout = "~/Views/Home/_HomeLayout.cshtml";
|
|
}
|
|
|
|
<h2>Training Reports</h2>
|
|
<div id="DataDisplay">
|
|
@{Html.RenderAction("TrainingReportsView", "Training");}
|
|
</div>
|
|
|