Advertisement
Guest User

Untitled

a guest
May 12th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. @model IEnumerable<MmmJqDt.Data.Models.Customer>
  2. @{
  3. ViewBag.Title = "Home";
  4. Layout = "~/Views/Shared/_Layout.cshtml";
  5. }
  6.  
  7. <table id="table-customers" class="table table-hover table-striped">
  8. <thead>
  9. <tr>
  10. <th>First name</th>
  11. <th>Last name</th>
  12. <th>Company</th>
  13. <th>Email</th>
  14. <th>Telephone</th>
  15. <th>City</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. @foreach (var item in Model)
  20. {
  21. <tr>
  22. <td>@item.FirstName</td>
  23. <td>@item.LastName</td>
  24. <td>@item.CompanyName</td>
  25. <td>@item.Email</td>
  26. <td>@item.Telephone</td>
  27. <td>@item.City</td>
  28. </tr>
  29. }
  30. </tbody>
  31. </table>
  32.  
  33. @section scripts{
  34. <script src="@Url.Content("~/js/index.js")"></script>
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement