Advertisement
Guest User

Untitled

a guest
Jan 27th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.70 KB | None | 0 0
  1. <h2>Aktywne hospitacje</h2>
  2.  
  3. <table class="table table-striped">
  4.     <thead>
  5.     <tr>
  6.         <th>Hospitowany</th>
  7.         <th>Kurs</th>
  8.         <th>Typ zajęć</th>
  9.         <th>Hospitujacy</th>
  10.     </tr>
  11.     </thead>
  12.     <tbody>
  13.     @foreach (var hospitacja in Model)
  14.     {
  15.         <tr>
  16.             <td>@hospitacja.Hospitowany</td>
  17.             <td>@hospitacja.NazwaKursu</td>
  18.             <td>@hospitacja.TypKursu</td>
  19.             <td><b>@hospitacja.Przewodniczacy </b>@hospitacja.Hospitujacy</td>
  20.             <td>@Html.ActionLink("Wprowadź protokół","Protokol","Hospitacja",new { hospitacjaId = hospitacja.Id}, new {@class="btn btn-info"})</td>
  21.         </tr>
  22.     }
  23.     </tbody>
  24. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement