Browse Source

Oops, these are objects with values.

pull/24/head
Ben Kurtovic 12 years ago
parent
commit
f11bf7198c
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      pages/copyvios.mako

+ 2
- 2
pages/copyvios.mako View File

@@ -95,13 +95,13 @@
% else:
<li>Results generated in <tt>${round(result.tdiff, 3)}</tt> seconds using <tt>${result.queries}</tt> queries.</li>
% endif
% if "EarwigCVShowDetails" in cookies and cookies["EarwigCVShowDetails"] == "True":
% if "EarwigCVShowDetails" in cookies and cookies["EarwigCVShowDetails"].value == "True":
<li><a id="cv-result-detail-link" href="#cv-result-detail" onclick="copyvio_toggle_details()">Hide details:</a></li>
% else:
<li><a id="cv-result-detail-link" href="#cv-result-detail" onclick="copyvio_toggle_details()">Show details:</a></li>
% endif
</ul>
% if "EarwigCVShowDetails" in cookies and cookies["EarwigCVShowDetails"] == "True":
% if "EarwigCVShowDetails" in cookies and cookies["EarwigCVShowDetails"].value == "True":
<div id="cv-result-detail" style="display: block;">
% else:
<div id="cv-result-detail" style="display: none;">


Loading…
Cancel
Save