No description
- Python 65.2%
- HTML 28.9%
- CSS 5.9%
|
|
||
|---|---|---|
| .github/workflows | ci: add publish.yml workflow | |
| django_bookdates | feat: implement icalendar export | |
| sample_project | Intial commit | |
| .gitignore |
chore: add dist to gitignore
|
|
| CHANGELOG.md | chore(main): release 0.2.0 | |
| manage.py | Intial commit | |
| pyproject.toml | chore(main): release 0.2.0 | |
| README.md | docs: add installation instructions | |
Django Bookdates
A platform for booking dates in shared calendars.
Installation
Install django-bookdates using your favourite package manager.
Add the following to your Django projects INSTALLED_APPS:
'crispy_forms',
'crispy_bootstrap5',
'django_bookdates'
And add the following configuration settings
CRISPY_TEMPLATE_PACK = "bootstrap5"
CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap5"
# If you want to predefine choices for a specific calendar
CALENDAR_CHOICES = { "example-calendar": ['Trixie', 'Liu', 'Enoch'] }