@if (this.isLoading && this.loadedLines.Count == 0)
{
@T("Loading log file...")
}
else if (this.displayLines.Count == 0)
{
@T("No matching log lines.")
}
else
{
@foreach (var line in this.displayLines)
{
@line.Number
@((MarkupString)this.RenderLine(line))
}
}