diff --git a/app.py b/app.py
index d1521c3..564111b 100644
--- a/app.py
+++ b/app.py
@@ -278,7 +278,8 @@ def dashboard(page=1):
current_page=page,
total_pages=total_pages,
total_projects=total_projects,
- per_page=per_page)
+ per_page=per_page,
+ is_admin=is_admin)
diff --git a/templates/dashboard.html b/templates/dashboard.html
index 6ea06e8..17e11bd 100644
--- a/templates/dashboard.html
+++ b/templates/dashboard.html
@@ -167,6 +167,9 @@
Date Possession Recovered |
Attorney's Fees |
Costs |
+ {% if is_admin %}
+ Last Synced |
+ {% endif %}
@@ -542,6 +545,13 @@
{{ r.costs }}
{% endcall %}
+ {% if is_admin %}
+
+ {% call expander() %}
+ {% if r.last_synced_at %}{{ r.last_synced_at.split('T')[0] }}{% endif %}
+ {% endcall %}
+ |
+ {% endif %}
{% else %}
@@ -610,7 +620,8 @@
'Matter Gate or Entry Code',
'Date Possession Recovered',
'Attorney\'s Fees',
- 'Costs'
+ 'Costs',
+ 'Last Synced'
],
selectAll: true,
visibleColumns: [],