Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. @model WebApplication3.Models.StudentModel
  2.  
  3. @{
  4. ViewBag.Title = "Index";
  5. }
  6.  
  7. <h2>Students</h2>
  8.  
  9. <div><button class="create btn btn-success"><span class="glyphicon glyphicon-plus"></span> Create New</button></div>
  10. <br/>
  11. <table class="table" ng-app="StudentApp">
  12. <tbody ng-controller="StudentCtrl">
  13. <tr>
  14. <th>Key</th>
  15. <th ng-click="">First Name</th>
  16. <th ng-click="">Last Name</th>
  17. <th>Profile picture</th>
  18. <th>Options</th>
  19. </tr>
  20. @foreach (var student in Model._StudentList)
  21. {
  22. <tr>
  23. <td>@student.StudentID</td>
  24. <td>@student.FirstName</td>
  25. <td>@student.LastName</td>
  26. <td>
  27. <a class="example-image-link" href="~/Images/@student.PhotoURL" data-lightbox="example-set" data-title="@student.FirstName @student.LastName profile Picture"><img class="example-image" width="60" height="40" src="~/Images/@student.PhotoURL" alt="" /></a>
  28. </td>
  29. <td>
  30. <a href="#" class="edit" data-studentid="@student.StudentID"><span class="glyphicon glyphicon-pencil img-rotate" title="Edit"></span></a>
  31. &nbsp;<a href="#" class="details" data-studentid="@student.StudentID"><span class="glyphicon glyphicon-exclamation-sign img-rotate" title="Infomation"></span></a>
  32. &nbsp;<a href="#" class="delete" data-studentid="@student.StudentID"><span class="glyphicon glyphicon-remove img-rotate" title="Remove"></span></a>
  33. </td>
  34. </tr>
  35. }
  36. </tbody>
  37. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement