diff options
Diffstat (limited to 'account/log.ftl')
-rw-r--r-- | account/log.ftl | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/account/log.ftl b/account/log.ftl new file mode 100644 index 0000000..29046cf --- /dev/null +++ b/account/log.ftl @@ -0,0 +1,35 @@ +<#import "template.ftl" as layout> +<@layout.mainLayout active='log' bodyClass='log'; section> + + <div class="row"> + <div class="col-md-10"> + <h2>${msg("accountLogHtmlTitle")}</h2> + </div> + </div> + + <table class="table table-striped table-bordered"> + <thead> + <tr> + <td>${msg("date")}</td> + <td>${msg("event")}</td> + <td>${msg("ip")}</td> + <td>${msg("client")}</td> + <td>${msg("details")}</td> + </tr> + </thead> + + <tbody> + <#list log.events as event> + <tr> + <td>${event.date?datetime}</td> + <td>${event.event}</td> + <td>${event.ipAddress}</td> + <td>${event.client!}</td> + <td><#list event.details as detail>${detail.key} = ${detail.value} <#if detail_has_next>, </#if></#list></td> + </tr> + </#list> + </tbody> + + </table> + +</@layout.mainLayout>
\ No newline at end of file |