-
Notifications
You must be signed in to change notification settings - Fork 298
Description
Feature Description
Currently, when exporting a board to .csv, the Completion Date of a card is not included. After clicking the “Mark as done” button, the modification date of the card is updated, but there is no way to distinguish this event in the export.
Steps / Use Case
- A user creates cards and sets due dates.
- The card is completed by clicking “Mark as done”.
- The board is exported to .csv.
- The exported file does not contain any field showing the completion date (when the card was marked as done).
Expected Behavior
The CSV export should include a dedicated column (e.g., completion_date) with the timestamp of when the card was marked as done.
Actual Behavior
The only available date is the general modification date, which is not sufficient to track completion accurately. The only workaround is to manually copy this information into the card description.
System Information
Nextcloud Deck: 1.14.5
Nextcloud: 30.0.13.1
Browser/OS: Chrome (tested on Chrome 139.0.0.0). Linux 6.1.0-35-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.137-1 (2025-05-07) x86_64
Proposed Solution
Add a completion_date column to the CSV export that records the exact time when the card was marked as done.
Additional Context
- This would help teams track real completion times for reporting and analysis.
- Currently, storing this information in card descriptions is inefficient and error-prone.