From 1e1c48bded4c9b0cdcbb5fb1d8c4a6a993a5744a Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Tue, 29 Sep 2015 02:21:52 -0500 Subject: [PATCH] Handle excluded URLs in results. --- static/style.css | 1 + templates/index.mako | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/static/style.css b/static/style.css index e23ff91..c4d6f2b 100644 --- a/static/style.css +++ b/static/style.css @@ -335,6 +335,7 @@ span.source-suspect { color: #900; } span.source-possible { color: #990; } span.source-novio { color: #090; } span.source-skipped { font-style: italic; } +span.source-excluded { font-style: italic; } a:link { color: #373; text-decoration: none; } a:visited { color: #373; text-decoration: none; } diff --git a/templates/index.mako b/templates/index.mako index a34bd71..4709b3c 100644 --- a/templates/index.mako +++ b/templates/index.mako @@ -223,7 +223,9 @@ = 10 else 'id="source-row-selected"' if i == 0 else ""}> ${source.url | h} - % if source.skipped: + % if source.excluded: + Excluded + % elif source.skipped: <% skips = True %> Skipped % else: