mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 12:38:30 +00:00
20 lines
725 B
Plaintext
20 lines
725 B
Plaintext
@page "/uploads"
|
|
@inherits BasicComponent
|
|
|
|
<PageTitle>Token upload locations</PageTitle>
|
|
<RadzenContent Container="main">
|
|
<RadzenHeading Size="H1" Text="Select or create a token upload" />
|
|
@if (AppState.SelectedToken == null)
|
|
{
|
|
<RadzenHeading Size="H3" Text="Please choose token first!" />
|
|
}
|
|
else
|
|
{
|
|
<div style="width: 100%; display: flex; flex-direction: row; justify-content: end;">
|
|
<RadzenButton Text="Create New" Icon="add_circle_outline" ButtonStyle="ButtonStyle.Secondary"
|
|
Click="@OpenCreateUploadDialog"/>
|
|
</div>
|
|
<CardList Data="@Data" @bind-SelectedItems="@AppState.Storage.SelectedUploadLocations"/>
|
|
}
|
|
</RadzenContent>
|