diff options
Diffstat (limited to 'Project-Unite/Views/Admin/AddUserToRole.cshtml')
| -rw-r--r-- | Project-Unite/Views/Admin/AddUserToRole.cshtml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Project-Unite/Views/Admin/AddUserToRole.cshtml b/Project-Unite/Views/Admin/AddUserToRole.cshtml index 899c143..33a6c16 100644 --- a/Project-Unite/Views/Admin/AddUserToRole.cshtml +++ b/Project-Unite/Views/Admin/AddUserToRole.cshtml @@ -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> |
