Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.7 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8"/>
  5. <title>ESPurna Update Server</title>
  6. <link href='//fonts.googleapis.com/css?family=Lato:300' rel='stylesheet' type='text/css'>
  7. <style>
  8. body {
  9. margin: 50px 0 0 0;
  10. padding: 0;
  11. width: 100%;
  12. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  13. text-align: center;
  14. color: #aaa;
  15. font-size: 18px;
  16. }
  17. h1 {
  18. color: #719e40;
  19. letter-spacing: -3px;
  20. font-family: 'Lato', sans-serif;
  21. font-size: 100px;
  22. font-weight: 200;
  23. margin-bottom: 0;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <h1>ESPurna Update Server</h1>
  29. <table>
  30. <thead>
  31. <tr>
  32. <th>Device</th>
  33. <th>Minimum Hardware Version</th>
  34. <th>Maximum Hardware Version</th>
  35. <th>Minimum Firmware Version</th>
  36. <th>Maximum Firmware Version</th>
  37. <th>Latest Firmware Version</th>
  38. </tr>
  39. </thead>
  40. <tbody>
  41. {% for version in versions %}
  42. <tr>
  43. <td>{{ version.model }}</td>
  44. <td>{{ version.hardware_min }}</td>
  45. <td>{{ version.hardware_max }}</td>
  46. <td>{{ version.firmware_min }}</td>
  47. <td>{{ version.firmware_max }}</td>
  48. <td>{{ version.firmware_version }}</td>
  49. </tr>
  50. {% endfor %}
  51. </tbody>
  52. </table>
  53. </body>
  54. </html>