Adds bugs a title.
This commit is contained in:
parent
eaef44867a
commit
20d8f3e7a6
5 changed files with 32 additions and 0 deletions
|
|
@ -11,6 +11,13 @@
|
||||||
<h4>Bug</h4>
|
<h4>Bug</h4>
|
||||||
<hr />
|
<hr />
|
||||||
<div asp-validation-summary="ValidationSummary.ModelOnly" class="text-danger"></div>
|
<div asp-validation-summary="ValidationSummary.ModelOnly" class="text-danger"></div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label asp-for="Title" class="col-md-2 control-label">@SR["Title"]</label>
|
||||||
|
<div class="col-md-10">
|
||||||
|
<input asp-for="Title" class="form-control" />
|
||||||
|
<span asp-validation-for="Title" class="text-danger" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label asp-for="Description" class="col-md-2 control-label">@SR["Description"]</label>
|
<label asp-for="Description" class="col-md-2 control-label">@SR["Description"]</label>
|
||||||
<div class="col-md-10">
|
<div class="col-md-10">
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,12 @@
|
||||||
<dd>
|
<dd>
|
||||||
@Html.DisplayFor(model => model.FeatureId)
|
@Html.DisplayFor(model => model.FeatureId)
|
||||||
</dd>
|
</dd>
|
||||||
|
<dt>
|
||||||
|
@Html.DisplayNameFor(model => model.Title)
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
@Html.DisplayFor(model => model.Title)
|
||||||
|
</dd>
|
||||||
<dt>
|
<dt>
|
||||||
@Html.DisplayNameFor(model => model.Status)
|
@Html.DisplayNameFor(model => model.Status)
|
||||||
</dt>
|
</dt>
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,12 @@
|
||||||
<dd>
|
<dd>
|
||||||
@Html.DisplayFor(model => model.FeatureId)
|
@Html.DisplayFor(model => model.FeatureId)
|
||||||
</dd>
|
</dd>
|
||||||
|
<dt>
|
||||||
|
@Html.DisplayNameFor(model => model.Title)
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
@Html.DisplayFor(model => model.Title)
|
||||||
|
</dd>
|
||||||
<dt>
|
<dt>
|
||||||
@Html.DisplayNameFor(model => model.Status)
|
@Html.DisplayNameFor(model => model.Status)
|
||||||
</dt>
|
</dt>
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,13 @@
|
||||||
<span asp-validation-for="FeatureId" class="text-danger" />
|
<span asp-validation-for="FeatureId" class="text-danger" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label asp-for="Title" class="col-md-2 control-label">@SR["Title"]</label>
|
||||||
|
<div class="col-md-10">
|
||||||
|
<input asp-for="Title" class="form-control" />
|
||||||
|
<span asp-validation-for="Title" class="text-danger" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label asp-for="Status" class="col-md-2 control-label"></label>
|
<label asp-for="Status" class="col-md-2 control-label"></label>
|
||||||
<div class="col-md-10">
|
<div class="col-md-10">
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,9 @@
|
||||||
<td>
|
<td>
|
||||||
@Html.DisplayNameFor(model => model.Id)
|
@Html.DisplayNameFor(model => model.Id)
|
||||||
</td>
|
</td>
|
||||||
|
<td>
|
||||||
|
@Html.DisplayNameFor(model => model.Title)
|
||||||
|
</td>
|
||||||
<th>
|
<th>
|
||||||
@Html.DisplayNameFor(model => model.FeatureId)
|
@Html.DisplayNameFor(model => model.FeatureId)
|
||||||
</th>
|
</th>
|
||||||
|
|
@ -31,6 +34,9 @@
|
||||||
<td>
|
<td>
|
||||||
@Html.DisplayFor(model => item.Id)
|
@Html.DisplayFor(model => item.Id)
|
||||||
</td>
|
</td>
|
||||||
|
<td>
|
||||||
|
@Html.DisplayFor(model => item.Title)
|
||||||
|
</td>
|
||||||
<td>
|
<td>
|
||||||
@Html.DisplayFor(modelItem => item.FeatureId)
|
@Html.DisplayFor(modelItem => item.FeatureId)
|
||||||
</td>
|
</td>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue