mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-01-22 17:22:15 +00:00
WAN
This commit is contained in:
parent
6b3417559f
commit
46f46b7238
1 changed files with 4 additions and 4 deletions
|
@ -10,12 +10,12 @@
|
|||
{
|
||||
<table class="table-condensed">
|
||||
<tr>
|
||||
<td>@Html.DisplayNameFor(model => model.Username)</td>
|
||||
<td>@Html.DropDownListFor(model => model.Username, Model.Users, new { @class = "form-control" })</td>
|
||||
<td>@Html.DisplayNameFor(Model => Model.Username)</td>
|
||||
<td>@Html.DropDownListFor(Model => Model.Username, Model.Users, new { @class = "form-control" })</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>@Html.DisplayNameFor(model => model.RoleId)</td>
|
||||
<td>@Html.DropDownListFor(model => model.RoleId, Model.Roles, new { @class = "form-control" })</td>
|
||||
<td>@Html.DisplayNameFor(Model => Model.RoleId)</td>
|
||||
<td>@Html.DropDownListFor(Model => Model.RoleId, Model.Roles, new { @class = "form-control" })</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
|
Loading…
Reference in a new issue