state_bot.tmpl.html 509 B

12345678910111213
  1. {{ define "state_bot" }}
  2. {{ template "header" . }}
  3. <h1>Страница состояния бота вартанк</h1>
  4. <p class="border rounded"><span class="badge bg-secondary">Имя:</span> {{.имя}}</p>
  5. <div class="container m-3 d-flex flex-wrap border rounded">
  6. {{ template "state_bot_global" . }}
  7. {{ template "state_bot_power" . }}
  8. {{ template "state_bot_mine" . }}
  9. {{ template "state_bot_polygon" . }}
  10. {{ template "state_bot_arsenal" . }}
  11. </div>
  12. {{ template "footer" . }}
  13. {{end}}