StuReport.cshtml 300 B

123456789
  1. @using WeApp.TrainingPortrait.Dto
  2. @using WeApp.Views.Shared.Camp
  3. @model GroupReportDto
  4. @{
  5. Layout = "~/Views/Shared/Layout/_Layout.Stu.cshtml";
  6. ViewBag.Title = $"{(Model.Name.IsEmpty() ? "" : $"[{Model.Name}] ")}演练报告";
  7. }
  8. @Html.Partial("Camp/_Report", new ReportModel(Model, false))