adds bug a description

This commit is contained in:
Paul Schneider 2017-10-16 11:29:10 +02:00
commit 3ca7870456
12 changed files with 2524 additions and 2 deletions

View file

@ -10,7 +10,10 @@
<a asp-action="Create">Create New</a>
</p>
<table class="table">
<tr>
<tr>
<th>
@Html.DisplayNameFor(model => model.Id)
</th>
<th>
@Html.DisplayNameFor(model => model.Description)
</th>
@ -25,6 +28,9 @@
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.Id)
</td>
<td>
@Html.DisplayFor(modelItem => item.Description)
</td>