13 lines
479 B
Plaintext
13 lines
479 B
Plaintext
|
|
@{
|
|
ViewBag.Title = "ViewTrainingGroup";
|
|
Layout = "~/Views/Admin/_AdminLayout.cshtml";
|
|
}
|
|
<script src="~/Scripts/excel-bootstrap-table-filter-bundle.js"></script>
|
|
<script src="~/Scripts/moment.js"></script>
|
|
<link rel="stylesheet" href="~/Content/excel-bootstrap-table-filter-style.css" />
|
|
<h2>View/Edit Training Group</h2>
|
|
<div id="DataDisplay">
|
|
@{Html.RenderAction("TrainingGroupPartial", "Admin", new { groupID = Convert.ToInt32(ViewBag.TrainingGroupId) });}
|
|
</div>
|