Index.cshtml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. @model List<bitforum.Models.Page.Document>
  2. @{
  3. ViewData["Title"] = "문서 관리";
  4. }
  5. <div class="container">
  6. <h3>@ViewData["Title"]</h3>
  7. <hr />
  8. <partial name="_StatusMessage" />
  9. <div class="row g-2 align-items-end">
  10. <div class="col">
  11. Total : @((Model?.Count ?? 0).ToString("N0"))
  12. </div>
  13. <div class="col text-end">
  14. <a class="btn btn-sm btn-success" asp-controller="Document" asp-action="Write">새로등록</a>
  15. </div>
  16. </div>
  17. <div class="table-responsive">
  18. <table class="table table-striped table-bordered table-hover mt-3">
  19. <colgroup>
  20. <col width="5%"/>
  21. <col width="*"/>
  22. <col width="25%"/>
  23. <col width="10%"/>
  24. <col width="9%"/>
  25. <col width="9%"/>
  26. <col width="8%"/>
  27. </colgroup>
  28. <thead>
  29. <tr class="text-center">
  30. <th>ID</th>
  31. <th>제목</th>
  32. <th>주소</th>
  33. <th>조회 수</th>
  34. <th>등록일시</th>
  35. <th>수정일시</th>
  36. <th>비고</th>
  37. </tr>
  38. </thead>
  39. <tbody>
  40. @if (Model == null || !Model.Any())
  41. {
  42. <tr>
  43. <td colspan="7" class="text-center align-middle">No Data.</td>
  44. </tr>
  45. }
  46. else
  47. {
  48. @foreach (var row in Model)
  49. {
  50. string url = $"https://{ViewBag.siteURL}/{row.Code}";
  51. <tr class="text-center align-middle">
  52. <td>@row.ID</td>
  53. <td>@row.Subject</td>
  54. <td>
  55. <a href="@url" target="_blank" rel="external">
  56. @url
  57. </a>
  58. </td>
  59. <td>@row.Views</td>
  60. <td>@row.CreatedAt</td>
  61. <td>@row.UpdatedAt</td>
  62. <td>
  63. <div class="d-grid gap-2">
  64. <a class="btn btn-sm btn-info text-white" asp-controller="Document" asp-action="Edit" asp-route-id="@row.ID">수정</a>
  65. <a class="btn btn-sm btn-danger text-white btn-delete-row" asp-controller="Document" asp-action="Delete" asp-route-id="@row.ID">삭제</a>
  66. </div>
  67. </td>
  68. </tr>
  69. }
  70. }
  71. </tbody>
  72. </table>
  73. </div>
  74. </div>