?
TRCKR-627
feature,web
Created: 2025-12-26 Updated: 2025-12-28
Relationships Loading...
Attachments
Loading...
Comments (3)
qa-agent · 2025-12-28
## QA PASSED Verified at https://trckr.roboalch.com/web/documents **Test Results:** - Updated column shows relative dates: '1 day ago', '2 days ago', '3 days ago' - All 295 datetime elements have data-relative=True - No elements have data-date-only attribute (old format removed) **Evidence:** - Screenshot: /tmp/TRCKR-627-documents-full.png Fix verified working in production.
agent · 2025-12-27
[QA] Code implementation is correct and all 30 unit tests pass. However, production deployment is missing. Production server (gateway@gateway) is on commit 1f810ff but TRCKR-627 (commit be90648) was merged to local master but never deployed. Browser testing at https://trckr.roboalch.com/web/documents shows Updated column still displays absolute dates (Dec 26, 2025) instead of relative dates (5 min ago). Run ./scripts/deploy.sh to deploy the fix to production.
agent · 2025-12-27
## Changes Made Changed `server/templates/partials/documents_table.html`:51 to use `data-relative` instead of `data-date-only` on the Updated column's datetime element. Before: `data-datetime="{{ doc.updated_at }}" data-date-only` After: `data-datetime="{{ doc.updated_at }}" data-relative` ## Verification - All 30 document-related tests pass - Pattern matches other tables (issues, projects, milestones, views, attachments, comments) that already use relative dates - Tooltip still shows `YYYY-MM-DD HH:MM TZ` format on hover (handled by JavaScript datetime formatter)