station.eta 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <% layout("/sk/layout", { title: it.meteostanica.name }) %>
  2. <%~ include("/sk/panel/partials/navbar") %>
  3. <% const backIcon = `
  4. <svg class="icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
  5. <path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m12 19l-7-7l7-7m7 7H5" />
  6. </svg>
  7. ` %>
  8. <% const resetIcon = `
  9. <svg class="icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
  10. <g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
  11. <path d="M3 12a9 9 0 1 0 9-9a9.75 9.75 0 0 0-6.74 2.74L3 8" />
  12. <path d="M3 3v5h5" />
  13. </g>
  14. </svg>
  15. ` %>
  16. <% const editIcon = `
  17. <svg class="icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
  18. <g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
  19. <path d="M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" />
  20. <path d="M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z" />
  21. </g>
  22. </svg>
  23. ` %>
  24. <% const deleteIcon = `
  25. <svg class="icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
  26. <path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 11v6m4-6v6m5-11v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6M3 6h18M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" />
  27. </svg>
  28. ` %>
  29. <div class="container-row">
  30. <a role="button" href="/panel/stations"><%~ backIcon %></a>
  31. <h2><%= it.meteostanica.name %></h2>
  32. </div>
  33. <% if (it.meteostanica.description) { %>
  34. <p><strong>popis:</strong> <%= it.meteostanica.description %></p>
  35. <% } %>
  36. <p><strong>vytvorená:</strong> <%= it.meteostanica.timestamp %></p>
  37. <div class="container-row">
  38. <p><strong>websocket kľúč:</strong> <%= it.meteostanica.websocketKey %></p>
  39. <a role="button" href="/panel/stations/<%= it.meteostanica.id %>/resetWebsocketKey"><%~ resetIcon %> reset</a>
  40. </div>
  41. <hr>
  42. <div class="container-row">
  43. <a role="button" class="primary" href="/panel/stations/<%= it.meteostanica.id %>/edit"><%~ editIcon %> upraviť</a>
  44. <a role="button" class="danger" href="/panel/stations/<%= it.meteostanica.id %>/delete"><%~ deleteIcon %> odstrániť</a>
  45. </div>
  46. <p>(dáta s histórou (grafmi) bude tu)</p>