feature: scheduled flag removal
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
Authorization.Require(Claims.Config.DeviceFlag.Show);
|
||||
ViewBag.Title = Html.ToBreadcrumb("Configuration", MVC.Config.Config.Index(), "Device Flags");
|
||||
var showTags = Model.DeviceFlags.Keys.Any(i => i.DevicesLinkedGroup != null || i.DeviceUsersLinkedGroup != null ||
|
||||
i.OnAssignmentExpression != null || i.OnUnassignmentExpression != null);
|
||||
i.OnAssignmentExpression != null || i.OnUnassignmentExpression != null || i.DefaultRemoveDays.HasValue);
|
||||
}
|
||||
<div id="Config_DeviceFlags_Index">
|
||||
@if (Model.DeviceFlags.Count == 0)
|
||||
@@ -59,6 +59,10 @@
|
||||
{
|
||||
<i class="fa fa-bolt fa-lg alert" title="Has Expressions"></i>
|
||||
}
|
||||
@if (item.DefaultRemoveDays.HasValue)
|
||||
{
|
||||
<i class="fa fa-clock-o fa-lg" title="Has Default Unassignment"></i>
|
||||
}
|
||||
</td>
|
||||
}
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user