This repository has been archived by the owner on Jun 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
165 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,3 +57,6 @@ crashlytics-build.properties | |
|
||
# testing | ||
.coverage | ||
|
||
# Config | ||
conf/config.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{% extends "menu_detail.html" %} | ||
{% block data %} | ||
|
||
{% for event in data %} | ||
{% if loop.first or loop.index0 % 3 == 0 %}<div class="row spacer">{% endif %} | ||
<div class="col-xs-4"> | ||
<div class="small-box bg-{{ event|color_for_event }} icon-xs"> | ||
<div class="inner" style="text-align: center;" title="{{ k }}" data-toggle="tooltip" data-placement="right"> | ||
<h1>{{ event.check.name|replace('_', ' ')|replace('-', ' ')|replace('.', ' ') }}</h1> | ||
<div class="icon"> | ||
<i class="fa fa-{{ event|icon_for_event }}"></i> | ||
</div> | ||
<p>{{ event.client.display_name or event.client.displayName or event.client.name }}</p> | ||
</div> | ||
<a class="small-box-footer" href="{% if dc['uchiwa'] %}{{ dc['uchiwa'] }}/#/client/{{ dc['name'] }}/{{ event.client.name }}?check={{ event.check.name }}{% else %}#{% endif %}" {% if dc['uchiwa'] %}target="_blank"{% endif %}> | ||
<small>Detail</small> | ||
<i class="fa fa-arrow-circle-right"></i> | ||
</a> | ||
</div> | ||
</div> | ||
{% if loop.last or loop.index0 % 3 == 2 %}</div>{% endif %} | ||
{% else %} | ||
<div class="row spacer"> | ||
<div class="col-xs-12"> | ||
<div class="small-box bg-green"> | ||
<div class="inner" style="text-align: center"> | ||
{% if appcfg.no_fail_image %} | ||
<img src="{{ appcfg.no_fail_image }}" alt="All checks passing" /> | ||
{% else %} | ||
<h2>All checks passing</h2> | ||
{% endif %} | ||
<div class="icon"> | ||
<i class="fa fa-check-circle"></i> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
|
||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters