mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
20 lines
531 B
Plaintext
20 lines
531 B
Plaintext
@attribute [Authorize]
|
|
@inherits AuthComponentBase
|
|
|
|
<h5 class="text-info">
|
|
Editing @EditUser?.UserName
|
|
</h5>
|
|
|
|
@foreach (var group in DeviceGroups ?? Array.Empty<DeviceGroup>())
|
|
{
|
|
<div @key="group.ID">
|
|
<input
|
|
id="@group.ID"
|
|
type="checkbox"
|
|
class="align-middle me-2"
|
|
checked="@(DoesGroupContainUser(group))"
|
|
@onchange="ev => GroupCheckChanged(ev, group)" />
|
|
<label class="align-middle mb-0" for="@group.ID">@group.Name</label>
|
|
</div>
|
|
}
|