mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-31 01:08:41 +00:00
Add support for dismissing cases
This commit is contained in:
parent
1996c1cdbb
commit
96e8c7f71e
6 changed files with 86 additions and 10 deletions
|
@ -61,6 +61,7 @@
|
|||
<select name="role" class="ui selection dropdown">
|
||||
@foreach (PermissionLevel level in Enum.GetValues<PermissionLevel>())
|
||||
{
|
||||
if(level < 0) continue;
|
||||
string selected = level == user.PermissionLevel ? " selected" : "";
|
||||
|
||||
<option value="@((int)level)"@selected>@level.ToString()</option>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue