PluginProbe
WebTotem Security / 2.4.31
WebTotem Security v2.4.31
3.0.2 3.0.1 3.0.0 trunk 1.0 1.1 1.2 1.3 1.3.1 1.3.2 1.3.3 2.0 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.1 2.2.2 2.2.3 All 110 releases
wt-security / includes / templates / monitoring_reputation.html.twig

monitoring_reputation.html.twig in WebTotem Security 2.4.31, at includes/templates/monitoring_reputation.html.twig

43 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {% if reputation.status.name == 'pending' %}
2 {% include 'dots_loader.html.twig' %}
3 {% else %}
4
5 <div class="wtotem_table__td">
6 <div class="wtotem_table__wrap">
7 {% if reputation.status.image %}
8 <img src="{{ reputation.status.image }}" class="wtotem_table__img"/>
9 {% endif %}
10 </div>
11
12 <div class="wtotem_table__perfomance wtotem_table__perfomance_long wtotem-ml-20">{{ reputation.info }}</div>
13 </div>
14 <div class="wtotem_table__info">
15 <h3 class="h3 wtotem_table__subject">
16 {{ 'Status'|trans }}
17 <div class="wtotem_title-info__info wtotem-tooltip wtotem-tooltip-top" data-service="Reputation status">
18 <div class="wtotem-tooltip__content">
19 {{ reputation.status.tooltips }}
20 </div>
21 </div>
22 </h3>
23 <div class="wtotem_table__status">{{ reputation.status.text }}</div>
24 </div>
25 <div class="wtotem_table__info">
26 <h3 class="h3 wtotem_table__subject">
27 {{ 'Deny lists entries'|trans }}
28 </h3>
29 <div class="wtotem_table__text">
30 {{ reputation.blacklists_entries }}
31 </div>
32 </div>
33 <div class="wtotem_table__info">
34 <h3 class="h3 wtotem_table__subject">
35 {{ 'Last test'|trans }}
36 </h3>
37 <div class="wtotem_table__text">
38 {{ reputation.last_test }}
39 </div>
40 </div>
41 <div class="wtotem_table__info"></div>
42
43 {% endif %}