Skip to content

Commit

Permalink
Change icons refs #107
Browse files Browse the repository at this point in the history
  • Loading branch information
thorion21 committed Aug 29, 2019
1 parent 2bbe7dd commit 11e9271
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
Binary file removed insitu/static/images/error.png
Binary file not shown.
Binary file removed insitu/static/images/success.png
Binary file not shown.
34 changes: 17 additions & 17 deletions insitu/templates/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,27 @@
{% block content %}
<h1>About</h1>

<h3><b>&emsp;Sentry errors</b></h3>
<br>
<table class="sentry-table">
<h3><b>&emsp;Sentry errors</b></h3>
<br>
<table class="sentry-table">
<tr class="sentry-tr">
<th class="sentry-th">Name</th>
<th class="sentry-th">Last Occur</th>
<th class="sentry-th">Resolved</th>
<th class="sentry-th">Name</th>
<th class="sentry-th">Last Occur</th>
<th class="sentry-th">Resolved</th>
</tr>
{% for issue in issues %}
<tr class="sentry-tr">
<td class="sentry-title">{{ issue.name }}</td>
<td class="sentry-td">{{ issue.timestamp }}</td>
{% if issue.resolved %}
<td class="sentry-td"><img src="{% static "images/success.png" alt="success" %}"></td>
{% else %}
<td class="sentry-td"><img src="{% static "images/error.png" alt="error" %}"></td>
{% endif %}
</tr>
<tr class="sentry-tr">
<td class="sentry-title">{{ issue.name }}</td>
<td class="sentry-td">{{ issue.timestamp }}</td>
{% if issue.resolved %}
<td class="sentry-td"><span class="glyphicon glyphicon-ok-circle text-success"></span></td>
{% else %}
<td class="sentry-td"><span class="glyphicon glyphicon-remove-circle text-danger"></span></td>
{% endif %}
</tr>
{% endfor %}
</table>
<br>
</table>
<br>

<div id="id_changelog_container" class="changelog_container">
<table id="id_changelog" class="table-hover table-condensed" style="width:100%">
Expand Down

0 comments on commit 11e9271

Please sign in to comment.