You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
599 B
22 lines
599 B
@using System;
|
|
@using Volo.Abp.Identity
|
|
@using Microsoft.Extensions.Localization
|
|
@using Volo.Abp.Identity.Localization
|
|
|
|
@inject IStringLocalizer<IdentityResource> L
|
|
|
|
@(Data.As<IdentityRoleDto>().Name)
|
|
@if (Data.As<IdentityRoleDto>().IsDefault)
|
|
{
|
|
<Badge Dot="true"
|
|
Status="BadgeStatus.Success"
|
|
Style="margin-left: 0.25rem"
|
|
Text="@L["DisplayName:IsDefault"]"/>
|
|
}
|
|
@if (Data.As<IdentityRoleDto>().IsPublic)
|
|
{
|
|
<Badge Dot="true"
|
|
Status="BadgeStatus.Processing"
|
|
Style="margin-left: 0.25rem"
|
|
Text="@L["DisplayName:IsPublic"]"/>
|
|
}
|
|
|