list_bot.tmpl.html 527 B

1234567891011121314151617181920212223
  1. {{ define "list_bot" }}
  2. <!-- web/tmpl/list_bot.tmpl.html -->
  3. {{ template "header" . }}
  4. <h1>Страница списка ботов вартанк</h1>
  5. {{$lenBots:= len .bots}}
  6. {{printf "len %s" .lenBots}}<br>
  7. {{printf "bots: %s" .bots}}<br>
  8. {{ range $key, $name := .bots }}
  9. <div>
  10. <a href="/gui/bot/{{ $name }}/state">{{ $name }}</a><br><br>
  11. </div>
  12. {{ else }}
  13. Нет ботов
  14. {{ end }}
  15. <br>
  16. <a href="/gui/add_bot">Добавить бота</a>
  17. {{ if .err }}
  18. <p>{{ .err }}</p>
  19. {{ end }}
  20. {{ template "footer" . }}
  21. {{end}}