97 remaining

This commit is contained in:
Paul Schneider 2023-03-20 19:38:50 +00:00
commit 49ca652549
43 changed files with 103 additions and 168 deletions

View file

@ -13,16 +13,16 @@
<table class="table">
<tr>
<td>
@SR[Html.DisplayNameFor(model => model.Id)]
@Html.DisplayNameFor(model => model.Id)
</td>
<td>
@SR[Html.DisplayNameFor(model => model.Title)]
@Html.DisplayNameFor(model => model.Title)
</td>
<th>
@SR[Html.DisplayNameFor(model => model.FeatureId)]
@Html.DisplayNameFor(model => model.FeatureId)
</th>
<th>
@SR[Html.DisplayNameFor(model => model.Status)]
@Html.DisplayNameFor(model => model.Status)
</th>
<th></th>
</tr>
@ -40,7 +40,7 @@
</td>
<td>
@SR[typeof(Yavsc.Models.IT.Fixing.BugStatus).GetEnumNames()[(int)item.Status]]
@typeof(Yavsc.Models.IT.Fixing.BugStatus).GetEnumNames()[(int)item.Status]
</td>
<td>
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |

View file

@ -26,7 +26,7 @@
Status"]
</dt>
<dd>
@SR[typeof(Yavsc.Models.IT.Fixing.BugStatus).GetEnumNames()[(int)Model.Status]]
@typeof(Yavsc.Models.IT.Fixing.BugStatus).GetEnumNames()[(int)Model.Status]
</dd>
</dl>

View file

@ -13,16 +13,16 @@
<table class="table">
<tr>
<td>
@SR[Html.DisplayNameFor(model => model.Id)]
@Html.DisplayNameFor(model => model.Id)
</td>
<td>
@SR[Html.DisplayNameFor(model => model.Title)]
@Html.DisplayNameFor(model => model.Title)
</td>
<th>
@SR[Html.DisplayNameFor(model => model.FeatureId)]
@Html.DisplayNameFor(model => model.FeatureId)
</th>
<th>
@SR[Html.DisplayNameFor(model => model.Status)]
@Html.DisplayNameFor(model => model.Status)
</th>
<th></th>
</tr>
@ -40,7 +40,7 @@
</td>
<td>
@SR[typeof(Yavsc.Models.IT.Fixing.BugStatus).GetEnumNames()[(int)item.Status]]
@typeof(Yavsc.Models.IT.Fixing.BugStatus).GetEnumNames()[(int)item.Status]
</td>
<td>
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |