mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-22 20:42:24 +00:00
17 lines
613 B
Plaintext
17 lines
613 B
Plaintext
@inherits SubmittableDialog
|
|
|
|
<MudDialog>
|
|
<DialogContent>
|
|
<MudText>Are you sure you want to remove @Count torrent@(Count == 1 ? "": "s") from the transfer list?</MudText>
|
|
|
|
<MudGrid>
|
|
<MudItem xs="12">
|
|
<MudCheckBox Label="Also permanently delete the files" @bind-Value="DeleteFiles" LabelPlacement="Placement.End" />
|
|
</MudItem>
|
|
</MudGrid>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="Cancel">Cancel</MudButton>
|
|
<MudButton Color="Color.Primary" OnClick="Submit">Remove</MudButton>
|
|
</DialogActions>
|
|
</MudDialog> |