|
|
- {% load humanize hc_extras %}
- {% regroup checks by project as groups %}
- <table style="margin: 0; width: 100%; font-size: 16px;" cellpadding="0" cellspacing="0">
- {% for group in groups %}
- <tr>
- <td colspan="2" style="font-weight: bold; padding: 32px 8px 8px 8px; color: #333;">
- {{ group.grouper|mangle_link }}
- </td>
- <td style="padding: 32px 8px 8px 8px; margin: 0; font-size: 12px; color: #9BA2AB; font-family: Helvetica, Arial, sans-serif;">Last Ping</td>
- </tr>
- {% for check in group.list|sortchecks:sort %}
- <tr>
- <td style="border-top: 1px solid #EDEFF2; padding: 16px 8px;">
- <table cellpadding="0" cellspacing="0">
- <tr>
- {% with check.get_status_with_started as status %}
- {% if status == "new" %}
- <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>
- {% elif status == "paused" %}
- <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>
- {% elif status == "grace" %}
- <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>
- {% elif status == "up" %}
- <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>
- {% elif status == "started" %}
- <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>
- {% elif status == "down" %}
- <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>
- {% endif %}
- {% endwith %}
- </tr>
- </table>
- </td>
- <td style="border-top: 1px solid #EDEFF2; padding: 16px 8px; font-family: Helvetica, Arial, sans-serif;">
- {% if check.name %}
- {{ check.name|mangle_link }}
- {% else %}
- <span style="color: #74787E; font-style: italic;">unnamed</span>
- {% endif %}
- {% if check.tags %}
- <br />
- <table cellpadding="0" cellspacing="0">
- <tr>
- {% for tag in check.tags_list %}
- <td style="padding-right: 4px">
- <table cellpadding="0" cellspacing="0">
- <tr>
- <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;">
- {{ tag|mangle_link }}
- </td>
- </tr>
- </table>
- </td>
- {% endfor %}
- </tr>
- </table>
- {% endif %}
- </td>
- <td style="border-top: 1px solid #EDEFF2; padding: 16px 8px; font-family: Helvetica, Arial, sans-serif;">
- {% if check.last_ping %}
- {{ check.last_ping|naturaltime }}
- {% else %}
- Never
- {% endif %}
- <br />
- <a href="{{ check.details_url }}" target="_blank">Details…</a>
- </td>
- </tr>
- {% endfor %}
- {% endfor %}
- </table>
- <br />
|