BB: Card Styling
This commit is contained in:
@@ -39,7 +39,7 @@ else
|
||||
<h5>@item.Name</h5>
|
||||
@if (!string.IsNullOrWhiteSpace(item.Description))
|
||||
{
|
||||
<div class="bb-card-desc">@((MarkupString)item.Description)</div>
|
||||
<div class="bb-card-desc">@(item.Description)</div>
|
||||
}
|
||||
</div>
|
||||
|
||||
@@ -48,6 +48,7 @@ else
|
||||
</div>
|
||||
|
||||
<div class="bb-card-footer">
|
||||
<ActionLink Action="Details" Parameters="@("id=" + item.BlackBoardId.ToString())" Class="btn btn-primary" Text="Details" ResourceKey="Details"/>
|
||||
<ActionLink Action="Edit" Parameters="@("id=" + item.BlackBoardId.ToString())" ResourceKey="Edit"/>
|
||||
<ActionDialog Header="Delete BlackBoard" Message="Are You Sure You Wish To Delete This BlackBoard?" Action="Delete" Security="SecurityAccessLevel.Edit" Class="btn btn-danger" ConfirmClass="absolute" OnClick="@(async () => await Delete(item))" ResourceKey="Delete" Id="@item.BlackBoardId.ToString()"/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user