1

Topic: Todo list to show past unchecked events

Hello,
Is it possible to have a list of unchecked events that occurred in the past? In other words, show incomplete or overdue events.

Re: Todo list to show past unchecked events

Hello Brien

As far as I know there is no such list.
But you can in the date-field in the navigation bar set the date back in time. Then - when you see the todo-list it will start from that date and a number of days forward.

It would maybe be smart that the todo-list started to show non-checked todo's xx days back-in-time from chosen date ( which will normally be TODAY )  and thereafter the list as it is now.
The xx should be to avoid a lot of entries if users does not check the todo-events.
Is it something like this you ask for?

3

Re: Todo list to show past unchecked events

Yes, this is what I am looking for. But maybe with an option for an infinite past. Maybe something like a setting for 0-365 where 0 would go back forever?

4

Re: Todo list to show past unchecked events

I came up with a fix. Maybe it can be improved & incorporated into the settings in a future release....

In common/header.php on line 350, I changed the number of days to look back.....

$startD = date("Y-m-d", $curT - (365 * 86400)); //current date - 1 month  ************** Changed 30 to 365 to show backwards 1 year *********

Re: Todo list to show past unchecked events

Hi Brian,

Done, added it to the settings! In the next calendar version the days to look back in the Todo list can be specified on the admin's Settings page.

Roel

Re: Todo list to show past unchecked events

Excellent! Thank you!