Guest User

Untitled

a guest
Aug 15th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. @model IEnumerable<gameStats.Models.Players>
  2.  
  3. <h2>Player</h2>
  4.  
  5. <h4>Stats</h4>
  6.  
  7. <table class="table">
  8. <thead>
  9. <tr>
  10. <th>@Html.DisplayNameFor(model => model.Nickname)</th>
  11. <th>@Html.DisplayNameFor(model => model.Distance)</th>
  12. <th>@Html.DisplayNameFor(model => model.Shots)</th>
  13. <th>@Html.DisplayNameFor(model => model.Hits)</th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. @foreach (var item in Model) {
  18. <tr>
  19. <td>@Html.DisplayFor(modelItem => item.Nickname)</td>
  20. <td>@Html.DisplayFor(modelItem => item.Distance)</td>
  21. <td>@Html.DisplayFor(modelItem => item.Shots)</td>
  22. <td>@Html.DisplayFor(modelItem => item.Hits)</td>
  23. </tr>
  24. }
  25. </tbody>
  26. </table>
  27. <form asp-action="SearchHome" method="get">
  28. <input type="submit" value="Go Back">
  29. </form>
Add Comment
Please, Sign In to add comment