Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/SecurityInfo/templates/index.tpl')
-rw-r--r--plugins/SecurityInfo/templates/index.tpl31
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/SecurityInfo/templates/index.tpl b/plugins/SecurityInfo/templates/index.tpl
new file mode 100644
index 0000000000..0f053c1014
--- /dev/null
+++ b/plugins/SecurityInfo/templates/index.tpl
@@ -0,0 +1,31 @@
+{assign var=showSitesSelection value=false}
+{assign var=showPeriodSelection value=false}
+{include file="CoreAdminHome/templates/header.tpl"}
+{loadJavascriptTranslations plugins='SecurityInfo'}
+
+<h2>{'SecurityInfo_SecurityInformation'|translate}</h2>
+<p>{'SecurityInfo_PluginDescription'|translate}</p>
+
+<div style="max-width:980px;">
+{foreach from=$results.test_results key=i item=section}
+<h2>{$i}</h2>
+<table class="adminTable">
+ <thead>
+ <tr>
+ <th>{'SecurityInfo_Test'|translate}</th>
+ <th>{'SecurityInfo_Result'|translate}</th>
+ </tr>
+ </thead>
+ <tbody>
+ {foreach from=$section key=j item=test}
+ <tr>
+ <td>{$j}</td>
+ <td style="{if $test.result==-1}background-color:green;color:white;{elseif $test.result==-2}background-color:yellow;color:black;{else if $test.result=--4}background-color:red;color:white;{/if}">{$test.message}</td>
+ </tr>
+ {/foreach}
+ </tbody>
+</table>
+{/foreach}
+</div>
+
+{include file="CoreAdminHome/templates/footer.tpl"}