@page "/"
@inherits HomeBase
@rendermode InteractiveServer
Home
@if (string.IsNullOrWhiteSpace(SelectedFile))
{
No file selected
}
else
{
@SelectedFile.Split("/").LastOrDefault()
}
Available files
@foreach (var file in Files)
{
- SelectFile(file)">
@file.Split("/").LastOrDefault()
}
Transcription
@if (string.IsNullOrWhiteSpace(Transcription))
{
No transcription results
}
else
{
@Transcription
}