33 lines
1.8 KiB
HTML
33 lines
1.8 KiB
HTML
{{ $level := (cond (gt .dungeon.level.n 0) (.dungeon.level.descriptive | lower) .dungeon.level.descriptive) }}
|
|
<div>{{ if .death.cause }}🪦{{ end }}</div>
|
|
<h4 class="date">{{ time.Format "January 2, 2006" .end_date }}</h4>
|
|
<div class="character-descriptor">{{ .character.abbreviated }}</div>
|
|
<p>{{ .character.name }}, a {{ .character.alignment.descriptive | lower }} {{ .character.race.descriptive | lower }}
|
|
{{ .character.gender.descriptive | lower }} {{ .character.role.descriptive }},
|
|
died {{ if gt .death.count 1 }}for the last time{{ end }} in <span class="nobreak">{{ .dungeon.name }}</span>
|
|
on <span class="nobreak">{{ $level }}</span>.
|
|
She was {{ .death.cause }}.</p>
|
|
<table class="stats">
|
|
<tr>
|
|
{{- $startDate := time.Format "January, 02 2006" .start_date -}}
|
|
{{- $startDatetime := time.Format "2006-01-02" .start_date -}}
|
|
<td class="began">Began <time class="nobreak" datetime="{{ $startDatetime }}">{{ $startDate }}</time></td>
|
|
<td class="score">{{ .score | lang.FormatNumber 0 }} points</td>
|
|
{{/*
|
|
When I first wrote the importer script, I read about the log file
|
|
format on the Nethackwiki. It labeled a field as "maximum level",
|
|
which I interpreted as maximum character level. Turns out it's
|
|
actually maximum *dungeon* level. The script has been updated, but I
|
|
won't be able to update all the imported logfiles.
|
|
|
|
https://nethackwiki.com/wiki/Logfile
|
|
*/}}
|
|
{{ with .dungeon.max_level }}
|
|
<td class="level">{{ .descriptive }}</td>
|
|
{{ else }}
|
|
{{ with .character.max_level }}<td class="level">Level {{ . }}</td>{{ end }}
|
|
{{ end }}
|
|
<td class="hp">{{ cond (gt .character.hp.n 0) (printf "%s / %s" .character.hp.n .character.hp.max)
|
|
.character.hp.max }} hp</td>
|
|
</tr>
|
|
</table>
|