diff --git a/templates/admin/reports.html b/templates/admin/reports.html
index 5791d91..27311eb 100644
--- a/templates/admin/reports.html
+++ b/templates/admin/reports.html
@@ -49,7 +49,7 @@
{{ r.checked_at.strftime('%H:%M:%S') if r.checked_at else '' }} |
{{ r.full_name }} |
{{ r.website_name }} |
- {{ r.url[:40] }}… |
+ {{ r.url[:40] }}{% if r.url|length > 40 %}…{% endif %} |
{{ r.user_note }} |
{% else %}| No data. |
{% endfor %}
@@ -65,7 +65,7 @@
{{ r.check_date }} |
{{ r.full_name }} |
{{ r.website_name }} |
- {{ r.url[:40] }}… |
+ {{ r.url[:40] }}{% if r.url|length > 40 %}…{% endif %} |
Not Checked |
{% else %}| No data. |
{% endfor %}
@@ -83,7 +83,8 @@
{{ r.checked_count }} |
{{ r.total_sites }} |
-
+ {% set pct = (r.pct_complete or 0)|int %}
+
|
{{ r.pct_complete or 0 }}% |
diff --git a/templates/admin/users.html b/templates/admin/users.html
index b9626b4..bfaa927 100644
--- a/templates/admin/users.html
+++ b/templates/admin/users.html
@@ -3,7 +3,13 @@
{% block content %}
@@ -33,9 +39,9 @@
title="Send password reset link to {{ u.email }}">✉ Reset
{% endif %}
@@ -76,7 +82,11 @@