@if (Authorization.Has(Claims.Device.ShowJobs))
{
@Html.Partial(MVC.Device.Views.DeviceParts._Jobs, Model)
}
@if (Authorization.Has(Claims.Device.ShowDetails))
{
@Html.Partial(MVC.Device.Views.DeviceParts._Details, Model)
}
@if (Authorization.Has(Claims.Device.ShowAssignmentHistory))
{
@Html.Partial(MVC.Device.Views.DeviceParts._AssignmentHistory, Model)
}
@if (Authorization.Has(Claims.Device.ShowAttachments))
{
@Html.Partial(MVC.Device.Views.DeviceParts._Resources, Model)
}
@if (Authorization.Has(Claims.Device.ShowFlagAssignments))
{
@Html.Partial(MVC.Device.Views.DeviceParts._Flags, Model)
}
@if (Authorization.Has(Claims.Device.ShowCertificates))
{
@Html.Partial(MVC.Device.Views.DeviceParts._Certificates, Model)
}