Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @model List<Peklo.Models.ZemreliModel>
- @{
- ViewBag.Title = "Zemřelí";
- Layout = "~/Views/_PublicLayout.cshtml";
- }
- <h2>Zemřelí</h2>
- <table id="ZemreliFrame">
- <tr>
- <th class="myGridViewCells">
- -
- </th>
- <th class="myGridViewCells">
- Jméno
- </th>
- <th class="myGridViewCells">
- Příjmení
- </th>
- <th class="myGridViewCells">
- Peklo
- </th>
- </tr>
- @foreach (var item in Model)
- {
- <tr>
- <td class="myGridViewCells">
- @Html.ActionLink("Detail", "ZemrelyDetail", new { @id = item.id_zemreleho },new { @class = "ZemrelyDetailLink" })<br />
- </td>
- <td class="myGridViewCells">
- @item.jmeno
- </td>
- <td class="myGridViewCells">
- @item.prijmeni
- </td>
- <td class="myGridViewCells">
- @item.peklo
- </td>
- </tr>
- }
- </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement