No repeated character names were found yet.
}
else
{
var characterIndex = 0;
@foreach (var group in new[]
{
new { Title = "Probable characters", Candidates = probableCharacters },
new { Title = "Possible characters", Candidates = possibleCharacters },
new { Title = "Relationship titles", Candidates = relationshipTitles }
})
{
if (!group.Candidates.Any())
{
continue;
}
}
@if (excludedCharacters.Any())
{
Show excluded candidates
}
}