mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-23 04:52:22 +00:00
Update project name and namespaces
This commit is contained in:
17
Lantean.QBTMud/Components/Dialogs/DeleteDialog.razor
Normal file
17
Lantean.QBTMud/Components/Dialogs/DeleteDialog.razor
Normal file
@@ -0,0 +1,17 @@
|
||||
@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" LabelPosition="LabelPosition.End" />
|
||||
</MudItem>
|
||||
</MudGrid>
|
||||
</DialogContent>
|
||||
<DialogActions>
|
||||
<MudButton OnClick="Cancel">Cancel</MudButton>
|
||||
<MudButton Color="Color.Primary" OnClick="Submit">Remove</MudButton>
|
||||
</DialogActions>
|
||||
</MudDialog>
|
Reference in New Issue
Block a user