feat(dashboard): add admin-only Last Synced column

Adds a "Last Synced" column visible only to admins, positioned as the
last column. Displays the sync timestamp formatted as YYYY-MM-DD.
Includes the column in the visibility toggle modal.
This commit is contained in:
2026-05-12 23:57:26 -07:00
parent 616ffde402
commit 8dd7ae8c95
2 changed files with 14 additions and 2 deletions

3
app.py
View File

@@ -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)