Skip to content

Instantly share code, notes, and snippets.

@Kinani
Created March 10, 2017 13:01
Show Gist options
  • Save Kinani/384211ba45b7aa558a747cc72cd9a26d to your computer and use it in GitHub Desktop.
Save Kinani/384211ba45b7aa558a747cc72cd9a26d to your computer and use it in GitHub Desktop.
@model IEnumerable<UltraReadingWeb.Models.UltraReading>
@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h2>Index</h2>
<table class="table">
<tr>
<th>
@Html.DisplayNameFor(model => model.Reading)
</th>
<th></th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.Reading)
</td>
</tr>
}
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment