You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
527 B
21 lines
527 B
@if (Entity.Vanguard() != null) { |
|
<EntityDisplayComponent Title="Vanguard"> |
|
<div> |
|
<div> |
|
<b>Immortal:</b> @Entity.Vanguard().Immortal.Replace("_", " ") |
|
</div> |
|
@if (Entity.Vanguard().Replaces != "") { |
|
<div> |
|
<b>Replaces:</b> @Entity.Vanguard().Replaces.Replace("_", " ") |
|
</div> |
|
} |
|
</div> |
|
</EntityDisplayComponent> |
|
} |
|
|
|
@code { |
|
|
|
[Parameter] |
|
public EntityModel Entity { get; set; } |
|
|
|
} |