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.
 
 
 
 
 

97 lines
3.1 KiB

{% extends "base.html" %}
{% load humanize %}
{% block content %}
<div class="row">
<div class="col-sm-12">
<h1>Hello {{ request.user.email }}</h1>
<table class="table table-hover">
<tr>
<th></th>
<th>Name</th>
<th>Code</th>
<th>Frequency</th>
<th>Last Ping</th>
<th></th>
</tr>
{% for check in checks %}
<tr class="checks-row">
<td>
{% if check.status == "up" %}
<span
data-toggle="tooltip"
title="This check is UP"
class="label label-success">&nbsp;</span>
{% endif %}
{% if check.status == "down" %}
<span
data-toggle="tooltip"
title="This check is DOWN"
class="label label-danger">&nbsp;</span>
{% endif %}
{% if check.status == "new" %}
<span
data-toggle="tooltip"
title="This check has not yet been triggered"
class="label label-warning">&nbsp;</span>
{% endif %}
</td>
<td>
<form
method="post"
action="{% url 'hc-update-name' check.code %}"
class="name-edit form-inline inactive">
{% csrf_token %}
<input
name="name"
type="text"
value="{{ check.name }}"
placeholder="unnamed"
class="input-name form-control" />
<button class="btn btn-primary" type="submit">
<span class="glyphicon glyphicon-ok"></span>
</button>
<button class="btn btn-default name-edit-cancel">
<span class="glyphicon glyphicon-remove"></span>
</button>
</form>
</td>
<td>
<small>
<code>{{ check.code }}</code>
</small>
</td>
<td>{{ check.timeout }}</td>
<td>
{% if check.last_ping %}
<span
data-toggle="tooltip"
title="{{ check.last_ping }}">
{{ check.last_ping|naturaltime }}
</span>
{% else %}
Never
{% endif %}
</td>
<td>
<a class="setup-link" href="#">Setup Instructions</a>
</td>
</tr>
{% endfor %}
</table>
</div>
</div>
<div class="row">
<div class="col-sm-4 center-block"></div>
<form method="post" action="{% url 'hc-add-check' %}">
{% csrf_token %}
<input type="submit" class="btn btn-primary btn-lg" value="Add Check">
</form>
</div>
</div>
{% endblock %}