Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

stats.tmpl 522B

1234567891011121314151617
  1. {{template "admin/layout_head" (dict "ctxData" . "pageClass" "admin monitor")}}
  2. <div class="admin-setting-content">
  3. <h4 class="ui top attached header">
  4. {{ctx.Locale.Tr "admin.dashboard.statistic"}}
  5. </h4>
  6. <div class="ui attached table segment">
  7. <table class="ui very basic striped table unstackable">
  8. {{range $statsKey := .StatsKeys}}
  9. <tr>
  10. <td width="200">{{$statsKey}}</td>
  11. <td>{{index $.StatsCounter $statsKey}}</td>
  12. </tr>
  13. {{end}}
  14. </table>
  15. </div>
  16. </div>
  17. {{template "admin/layout_footer" .}}