> For the complete documentation index, see [llms.txt](https://docs.navigaglobal.com/publication-planner/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.navigaglobal.com/publication-planner/5.0.1.i/admin/settings/week-and-day-view.md).

# Week and Day view

how to configure different workspaces for week and day view

If you have a full configuration that renders a Day time slot view, you can add another workspace to render Weeks calendar view. To do that you need to add some extra configuration in the application settings of the workspace.

![](https://1963452389-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-Lk8tO4-E7PqFbfDIHsb-280014690%2Fuploads%2Fw6KxpGVnRw5MfBHZ4W4l%2FScreenshot%202021-11-09%20at%2013.53.25.png?alt=media\&token=eb175f1c-ea33-4691-8e1b-716a13162d34)

Code example of Week time slots:

```json
{
        "plannerInterval": "week",
        "slots": [
                {
                        "id": 1,
                        "name": " ",
                        "description": "",
                        "offset": {
                                "startDays": 0,
                                "endDays": 0,
                                "time": {
                                        "start": {
                                                "hour": 0,
                                                "minute": 0,
                                                "second": 0
                                        },
                                        "end": {
                                                "hour": 23,
                                                "minute": 59,
                                                "second": 59
                                        }
                                }
                        }
                },
                {
                        "id": 2,
                        "name": "",
                        "description": "",
                        "offset": {
                                "startDays": 1,
                                "endDays": 1,
                                "time": {
                                        "start": {
                                                "hour": 0,
                                                "minute": 0,
                                                "second": 0
                                        },
                                        "end": {
                                                "hour": 23,
                                                "minute": 59,
                                                "second": 59
                                        }
                                }
                        }
                },
                {
                        "id": 3,
                        "name": "",
                        "description": "",
                        "offset": {
                                "startDays": 2,
                                "endDays": 2,
                                "time": {
                                        "start": {
                                                "hour": 0,
                                                "minute": 0,
                                                "second": 0
                                        },
                                        "end": {
                                                "hour": 23,
                                                "minute": 59,
                                                "second": 59
                                        }
                                }
                        }
                },
                {
                        "id": 4,
                        "name": "",
                        "description": "",
                        "offset": {
                                "startDays": 3,
                                "endDays": 3,
                                "time": {
                                        "start": {
                                                "hour": 0,
                                                "minute": 0,
                                                "second": 0
                                        },
                                        "end": {
                                                "hour": 23,
                                                "minute": 59,
                                                "second": 59
                                        }
                                }
                        }
                },
                {
                        "id": 5,
                        "name": "",
                        "description": "",
                        "offset": {
                                "startDays": 4,
                                "endDays": 4,
                                "time": {
                                        "start": {
                                                "hour": 0,
                                                "minute": 0,
                                                "second": 0
                                        },
                                        "end": {
                                                "hour": 23,
                                                "minute": 59,
                                                "second": 59
                                        }
                                }
                        }
                },
                {
                        "id": 6,
                        "name": "",
                        "description": "",
                        "offset": {
                                "startDays": 5,
                                "endDays": 5,
                                "time": {
                                        "start": {
                                                "hour": 0,
                                                "minute": 0,
                                                "second": 0
                                        },
                                        "end": {
                                                "hour": 23,
                                                "minute": 59,
                                                "second": 59
                                        }
                                }
                        }
                },
                {
                        "id": 7,
                        "name": "",
                        "description": "",
                        "offset": {
                                "startDays": 6,
                                "endDays": 6,
                                "time": {
                                        "start": {
                                                "hour": 0,
                                                "minute": 0,
                                                "second": 0
                                        },
                                        "end": {
                                                "hour": 23,
                                                "minute": 59,
                                                "second": 59
                                        }
                                }
                        }
                }
        ]
}
```

This will result in Publication Planner in two different workspaces.&#x20;

![](https://1963452389-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-Lk8tO4-E7PqFbfDIHsb-280014690%2Fuploads%2Fcn6dCHb2JbckWyzkfJBS%2FScreenshot%202021-11-10%20at%2014.32.44.png?alt=media\&token=9feb1dd7-fd2a-43d8-a342-d946ba00c48f)
