Kaynağa Gözat

Support `rank` property in reports

This presents the items as an ordered list, rather than an unordered
list.
master
Matt Baer 8 yıl önce
ebeveyn
işleme
72226b065d
2 değiştirilmiş dosya ile 4 ekleme ve 0 silme
  1. +1
    -0
      lifereport.go
  2. +3
    -0
      report.tmpl

+ 1
- 0
lifereport.go Dosyayı Görüntüle

@@ -32,6 +32,7 @@ type (
Title string `json:"title"`
Summary []template.HTML `json:"summary"`
Details []template.HTML `json:"details"`
Rank []template.HTML `json:"rank"`
}
)



+ 3
- 0
report.tmpl Dosyayı Görüntüle

@@ -15,6 +15,9 @@
{{if .Details}}<ul>
{{range .Details}}<li>{{.}}</li>{{end}}
</ul>{{end}}
{{if .Rank}}<ol>
{{range .Rank}}<li>{{.}}</li>{{end}}
</ol>{{end}}
<hr />
{{end}}
</div>


Yükleniyor…
İptal
Kaydet