30 lines
1.4 KiB
Plaintext
30 lines
1.4 KiB
Plaintext
|
|
<div class="toast-container py-2 top-0 start-50 translate-middle-x" style="position: fixed; top: 0;">
|
|
<div class="toast bg-warning fade @toastCss" id="LiveToast2" role="alert">
|
|
<div class="toast-header">
|
|
<span class="bg-warning py-1 px-2 text-light rounded me-2"><i class="fa-regular fa-copy"></i></span>
|
|
<strong class="me-auto">@lastAction</strong>
|
|
<small>@textDtAct</small>
|
|
<button type="button" class="btn-close" aria-label="Close" @onclick="() => resetClone()"></button>
|
|
</div>
|
|
<div class="toast-body text-dark small">
|
|
@if (ClonedRA != null)
|
|
{
|
|
<SingleRaDisplay CurrItem="@ClonedRA" EnableAction="false"></SingleRaDisplay>
|
|
}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@if (CurrRA != null)
|
|
{
|
|
<dialog class="modal fade show p-0" tabindex="-1" style="display:block; background-color: rgba(10,10,10,.6);" aria-modal="true" role="dialog">
|
|
<div class="modal-dialog modal-xl">
|
|
<div class="modal-content">
|
|
<RegAttEditor CurrRecord="@CurrRA" ItemReset="UpdRegAttData" ItemUpdated="UpdRegAttData"></RegAttEditor>
|
|
</div>
|
|
</div>
|
|
</dialog>
|
|
}
|
|
|
|
<ProjectsList ListRA="ListProgetti" EnableAdmin="false" EnableEdit="true" ReqUpdate="DoUpdate" ItemCloned="SaveCloned" ItemSelected="EditItem" ActionPaste="ExecPaste"></ProjectsList>
|