2022-05-07 19:11:24 +03:00
|
|
|
{{ hf .Id }}<br />
|
2022-04-30 15:27:42 +03:00
|
|
|
{{if .Female }}
|
|
|
|
<i class="fa-solid fa-venus fa-xs"></i>
|
|
|
|
{{else}}
|
|
|
|
<i class="fa-solid fa-mars fa-xs"></i>
|
|
|
|
{{end}}
|
2022-05-05 23:18:31 +03:00
|
|
|
{{ .Race }}
|
|
|
|
{{ if .Deity}}deity{{end}}
|
|
|
|
{{ if .Force}}force{{end}}
|
|
|
|
{{ if .Vampire}}vampire{{end}}
|
|
|
|
{{ if .Werebeast}}werebeast{{end}}
|
|
|
|
{{ if .Necromancer}}necromancer{{end}}
|
|
|
|
{{ if not (or .Deity .Force)}}
|
|
|
|
(*{{ .BirthYear }}{{ if ge .DeathYear 0 }} †{{ .DeathYear }}{{ end }})
|
|
|
|
{{ end }}
|
2022-05-04 12:42:02 +03:00
|
|
|
{{- if or (ne 0 (len .EntityFormerPositionLink)) (ne 0 (len .EntityPositionLink)) }}
|
|
|
|
<ul class="mb-0">
|
|
|
|
{{- range $i := .EntityPositionLink }}
|
|
|
|
<li>
|
|
|
|
{{ ((getEntity $i.EntityId).Position $i.PositionProfileId).GenderName $ }} of {{ entity $i.EntityId }} (since {{
|
|
|
|
$i.StartYear }})
|
|
|
|
</li>
|
|
|
|
{{- end }}
|
|
|
|
{{- range $i := .EntityFormerPositionLink }}
|
|
|
|
<li>
|
|
|
|
{{ ((getEntity $i.EntityId).Position $i.PositionProfileId).GenderName $ }} of {{ entity $i.EntityId }} ({{
|
|
|
|
$i.StartYear }} - {{ $i.EndYear }})
|
|
|
|
</li>
|
|
|
|
{{- end }}
|
|
|
|
</ul>
|
|
|
|
{{- end }}
|