13 lines
268 B
Plaintext
13 lines
268 B
Plaintext
|
|
@if (!IsPermitted)
|
||
|
|
{
|
||
|
|
<div class="h-full w-full bg-amber-500">
|
||
|
|
<MudText Align="Align.Center"> شما اجازه دسترسی به این بخش را ندارد </MudText>
|
||
|
|
</div>
|
||
|
|
}
|
||
|
|
|
||
|
|
@code {
|
||
|
|
|
||
|
|
[Parameter]
|
||
|
|
public bool IsPermitted { get; set; }
|
||
|
|
}
|