mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-22 20:42:24 +00:00
24 lines
1013 B
Plaintext
24 lines
1013 B
Plaintext
<MudDialog>
|
|
<DialogContent>
|
|
<MudGrid>
|
|
<MudItem xs="12">
|
|
<MudFileUpload T="IReadOnlyList<IBrowserFile>" FilesChanged="UploadFiles" Accept=".torrent">
|
|
<ButtonTemplate>
|
|
<MudButton HtmlTag="label"
|
|
Variant="Variant.Filled"
|
|
Color="Color.Secondary"
|
|
StartIcon="@Icons.Material.Filled.CloudUpload"
|
|
for="@context.Id">
|
|
Choose files
|
|
</MudButton>
|
|
</ButtonTemplate>
|
|
</MudFileUpload>
|
|
</MudItem>
|
|
<AddTorrentOptions @ref="TorrentOptions" ShowCookieOption />
|
|
</MudGrid>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="Cancel">Close</MudButton>
|
|
<MudButton Color="Color.Primary" OnClick="Submit">Upload Torrents</MudButton>
|
|
</DialogActions>
|
|
</MudDialog> |