Result.cshtml 718 B

1234567891011121314151617181920212223242526272829
  1. @model IEnumerable<Skill>
  2. @{
  3. ViewData["Title"] = "Детали";
  4. }
  5. <h1>View</h1>
  6. <table class="table table-bordered table-striped " style="width:80%">
  7. <thead>
  8. <tr>
  9. <th>
  10. Навык
  11. </th>
  12. <th>
  13. Уровень
  14. </th>
  15. <th>
  16. </th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. @foreach(var item in Model)
  21. {
  22. <tr>
  23. <td width="40%">@item.Name</td>
  24. </tr>
  25. }
  26. </tbody>
  27. </table>