Fix Status page interface
pull/372/head
Aidaho 2023-11-17 10:11:36 +03:00
parent b2ecaa2e61
commit 0b9cf8ff78
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@
<div id="all-checks"> <div id="all-checks">
{% for s in smon %} {% for s in smon %}
<div class="{{ loop.cycle('odd', 'even') }} all-checks" id="add_check-{{ s.id }}" data-service_name="{{ s.name }} - {{s.group}}"> <div class="{{ loop.cycle('odd', 'even') }} all-checks" id="add_check-{{ s.id }}" data-service_name="{{ s.name }} - {{s.group}}">
<div class="check-name" title="{{s.desc}}">{{ s.name }} - {{s.group}}</div> <div class="check-name" title="{{s.desc}}">{{ s.name.replace("'", '') }} {% if s.group %}- {{s.group.replace("'", '')}}{% endif %}</div>
<div class="add_user_group check-button" title="{{lang.words.add|title()}} {{lang.words.service}}" onclick="addCheckToStatus('{{ s.id }}')">+</div> <div class="add_user_group check-button" title="{{lang.words.add|title()}} {{lang.words.service}}" onclick="addCheckToStatus('{{ s.id }}')">+</div>
</div> </div>
{% endfor %} {% endfor %}

View File

@ -154,7 +154,7 @@
} }
.upload::before { .upload::before {
display: none; display: none;
font-family: "Font Awesome 5 Regular"; font-family: "Font Awesome 5 Solid";
content: "\f093"; content: "\f093";
} }
.delete::before, .deleteVer::before { .delete::before, .deleteVer::before {