diff --git a/templates/index.mako b/templates/index.mako
index 2cce0e6..e3b1b40 100644
--- a/templates/index.mako
+++ b/templates/index.mako
@@ -163,12 +163,25 @@
% endif
+ <% skips = False %>
% if query.action == "search":
-
- % for source in result.sources:
- - ${source.url | h}: ${round(source.confidence * 100, 1)}
- % endfor
-
+
+
+ URL |
+ Confidence |
+
+ % for source in result.sources:
+
+ ${source.url | h} (compare) |
+ % if source.skipped:
+ <% skips = True %>
+ Skipped |
+ % else:
+ = T_SUSPECT else "source-possible" if source.confidence >= T_POSSIBLE else "source-novio"}">${round(source.confidence * 100, 1)}% |
+ % endif
+
+ % endfor
+
% endif