1234567891011121314151617181920212223242526272829 |
- @model IEnumerable<Skill>
- @{
- ViewData["Title"] = "Детали";
- }
- <h1>View</h1>
- <table class="table table-bordered table-striped " style="width:80%">
- <thead>
- <tr>
- <th>
- Навык
- </th>
- <th>
- Уровень
- </th>
- <th>
- </th>
- </tr>
- </thead>
- <tbody>
- @foreach(var item in Model)
- {
- <tr>
- <td width="40%">@item.Name</td>
- </tr>
- }
- </tbody>
- </table>
|