# 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://3738175519-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FAv8aKFC9wbLYQOMzd5Zs%2Fuploads%2FIIYKxk7NQlfs0fp9xekG%2FPublicationPlanner_week_config.png?alt=media\&token=fd0b149b-c94e-4830-9d6f-d1ccac21e4e4)

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 can result in Publication Planner with two different sidebar item if two items are created under [Sidebar item config](https://docs.navigaglobal.com/publication-planner/5.1.3/admin/settings/configuration/sidebar-item).

![](https://3738175519-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FAv8aKFC9wbLYQOMzd5Zs%2Fuploads%2FTF1pL71dihuqYTOs2pHY%2FPublicationPlanner_sidebaritems.png?alt=media\&token=be4332aa-a555-4ed0-ac51-44062d657339)
