diff --git a/static/style.css b/static/style.css index ecc7dad..cb0fa11 100644 --- a/static/style.css +++ b/static/style.css @@ -63,6 +63,17 @@ div#info-box { margin: 10px 5px; } +div#turnitin-container { + padding: 5px 10px; + margin: 15px 10px 10px 5px; +} + +div#turnitin-title { + margin-bottom: -5px; + text-align: center; + font-weight: bold; +} + div#cv-result { padding: 5px; margin: 10px 5px; diff --git a/templates/index.mako b/templates/index.mako index 2795fea..dafc474 100644 --- a/templates/index.mako +++ b/templates/index.mako @@ -150,6 +150,7 @@ + % if result:
Results @@ -166,14 +167,14 @@
% if query.turnitin: -
-

Turnitin results (this should be centered like "checked sources")

- % if query.turnitin_result: - Turnitin (through EranBot) found revisions that may have been plagiarized. Please review them. (Does this need some sort of p tag or something?) +
+
Turnitin Results
+ % if query.turnitin_result.reports: +

Turnitin (through EranBot) found revisions that may have been plagiarized. Please review them.

%for report in turnitin_result.reports: - ${turnitin_result} % else: - Turnitin (through EranBot) found no matching sources. +

Turnitin (through EranBot) found no matching sources.

% endif
% endif