PluginProbe
WebTotem Security / 2.4.14
WebTotem Security v2.4.14
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 / quarantine.html.twig

quarantine.html.twig in WebTotem Security 2.4.14, at includes/templates/quarantine.html.twig

31 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div id="wtotem_quarantine_wrap">
2 {% if count %}
3 <section class="wtotem_antivirus__quarantine wtotem_state wt_card">
4 <div class="wtotem_antivirus__quarantine-header">
5 <h3 class="h3 wtotem_antivirus__quarantine-title">{{ 'Quarantine'|trans }}</h3>
6 <p class="wtotem_antivirus__quarantine-files-count">
7 {{ 'Files in quarantine'|trans }} - <span id="quarantine_files_count">{{ count }}</span>
8 </p>
9 </div>
10
11 <div class="wtotem_file-table">
12 <div class="wtotem_file-table__thead">
13 <div class="wtotem_file-table__tr">
14 <div class="wtotem_file-table__th">
15 {{ 'File'|trans }}
16 </div>
17 <div class="wtotem_file-table__th">
18 {{ 'Date'|trans }}
19 </div>
20 <div class="wtotem_file-table__th"></div>
21 </div>
22 </div>
23 <div class="wtotem_file-table__tbody" id="quarantine_logs_wrap">
24 {% include 'quarantine_logs.html.twig' with {'logs': logs} %}
25 </div>
26 </div>
27 </section>
28 {% endif %}
29 </div>
30
31