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.

86 lines
4.5 KiB

5 years ago
5 years ago
  1. {% load humanize hc_extras %}
  2. {% regroup checks by project as groups %}
  3. {% spaceless %}
  4. <table style="margin: 0; width: 100%; font-size: 16px;" cellpadding="0" cellspacing="0">
  5. {% for group in groups %}
  6. <tr>
  7. <td colspan="2" style="font-weight: bold; padding: 32px 8px 8px 8px; color: #333;">
  8. {{ group.grouper|mangle_link }}
  9. </td>
  10. {% for dt in month_boundaries %}
  11. <td style="padding: 32px 8px 8px 8px; margin: 0; font-size: 12px; color: #9BA2AB; font-family: Helvetica, Arial, sans-serif;">
  12. {{ dt|date:"N Y"}}
  13. </td>
  14. {% endfor %}
  15. </tr>
  16. {% for check in group.list|sortchecks:sort %}
  17. <tr>
  18. <td style="border-top: 1px solid #EDEFF2; padding: 16px 8px;">
  19. <table cellpadding="0" cellspacing="0">
  20. <tr>
  21. {% with check.get_status_with_started as status %}
  22. {% if status == "new" %}
  23. <td style="background: #AAA; font-family: Helvetica, Arial, sans-serif; font-weight: bold; font-size: 10px; line-height: 10px; color: white; padding: 6px; margin: 0; border-radius: 3px;">NEW</td>
  24. {% elif status == "paused" %}
  25. <td style="background: #AAA; font-family: Helvetica, Arial, sans-serif; font-weight: bold; font-size: 10px; line-height: 10px; color: white; padding: 6px; border-radius: 3px;">PAUSED</td>
  26. {% elif status == "grace" %}
  27. <td style="background: #f0ad4e; font-family: Helvetica, Arial, sans-serif; font-weight: bold; font-size: 10px; line-height: 10px; color: white; padding: 6px; border-radius: 3px;">LATE</td>
  28. {% elif status == "up" %}
  29. <td style="background: #5cb85c; font-family: Helvetica, Arial, sans-serif; font-weight: bold; font-size: 10px; line-height: 10px; color: white; padding: 6px; border-radius: 3px;">UP</td>
  30. {% elif status == "started" %}
  31. <td style="background: #5cb85c; font-family: Helvetica, Arial, sans-serif; font-weight: bold; font-size: 10px; line-height: 10px; color: white; padding: 6px; border-radius: 3px;">STARTED</td>
  32. {% elif status == "down" %}
  33. <td style="background: #d9534f; font-family: Helvetica, Arial, sans-serif; font-weight: bold; font-size: 10px; line-height: 10px; color: white; padding: 6px; border-radius: 3px;">DOWN</td>
  34. {% endif %}
  35. {% endwith %}
  36. </tr>
  37. </table>
  38. </td>
  39. <td style="border-top: 1px solid #EDEFF2; padding: 16px 8px; font-family: Helvetica, Arial, sans-serif;">
  40. {% if check.name %}
  41. {{ check.name|mangle_link }}
  42. {% else %}
  43. <span style="color: #74787E; font-style: italic;">unnamed</span>
  44. {% endif %}
  45. {% if check.tags %}
  46. <br />
  47. <table cellpadding="0" cellspacing="0">
  48. <tr>
  49. {% for tag in check.tags_list %}
  50. <td style="padding-right: 4px">
  51. <table cellpadding="0" cellspacing="0">
  52. <tr>
  53. <td style="background: #eee; font-family: Helvetica, Arial, sans-serif; font-size: 10px; line-height: 10px; color: #555; padding: 4px; margin: 0; border-radius: 2px;">
  54. {{ tag|mangle_link }}
  55. </td>
  56. </tr>
  57. </table>
  58. </td>
  59. {% endfor %}
  60. </tr>
  61. </table>
  62. {% endif %}
  63. </td>
  64. {% for boundary, seconds, count in check.past_downtimes %}
  65. {% if count %}
  66. <td style="border-top: 1px solid #EDEFF2; padding: 16px 8px; font-family: Helvetica, Arial, sans-serif;">
  67. {{ count }}&nbsp;downtime{{ count|pluralize }},
  68. <br />
  69. {{ seconds|hc_approx_duration }} total
  70. </td>
  71. {% else %}
  72. <td style="border-top: 1px solid #EDEFF2; padding: 16px 8px; font-family: Helvetica, Arial, sans-serif; color: #9BA2AB;">
  73. {% if count is None %}
  74. {% comment %} The check didn't exist yet {% endcomment %}
  75. {% else %}
  76. All good!
  77. {% endif %}
  78. </td>
  79. {% endif %}
  80. {% endfor %}
  81. </tr>
  82. {% endfor %}
  83. {% endfor %}
  84. </table>
  85. <br />
  86. {% endspaceless %}