From f4224ad3b1daef6282b584485ac16bd5f7c95a50 Mon Sep 17 00:00:00 2001 From: Chris Alfano Date: Sat, 12 Sep 2020 22:50:52 +0000 Subject: [PATCH] feat: add endpoint column to transactions table --- html-templates/transactions/transactions.tpl | 2 ++ site-root/sass/site/modules/_tables.scss | 10 +++++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/html-templates/transactions/transactions.tpl b/html-templates/transactions/transactions.tpl index d567207..3428d62 100644 --- a/html-templates/transactions/transactions.tpl +++ b/html-templates/transactions/transactions.tpl @@ -75,6 +75,7 @@ + @@ -88,6 +89,7 @@ {foreach item=Request from=$data} + diff --git a/site-root/sass/site/modules/_tables.scss b/site-root/sass/site/modules/_tables.scss index 55610e8..522dfc8 100644 --- a/site-root/sass/site/modules/_tables.scss +++ b/site-root/sass/site/modules/_tables.scss @@ -16,7 +16,7 @@ vertical-align: -.2em; white-space: nowrap; width: 16px; - + // gimme crisp pixels image-rendering:optimizeSpeed; /* Legal fallback */ image-rendering:-moz-crisp-edges; /* Firefox */ @@ -24,12 +24,12 @@ image-rendering:-webkit-optimize-contrast; /* Chrome (and eventually Safari) */ image-rendering:crisp-edges; /* CSS3 Proposed */ -ms-interpolation-mode:bicubic; /* IE8+ */ - + &:hover, &:focus { border-color: rgba($text-color, .2); } - + &:active, &.selected { background-color: rgba($text-color, .1); @@ -58,6 +58,10 @@ text-align: right; } +.col-endpoint { + width: 200px +} + .col-key { width: 1%; }
Endpoint Request Timestamp Response Code
{contextLink $Request->Endpoint} {$Request->Method} {$Request->Path|default:/}{tif $Request->Query ? "?$Request->Query"|query_string} {$Request->Created|date_format:'%Y-%m-%d %H:%M:%S'} {$Request->ResponseCode}