Run contribution rounds (Beitragsrunden) with juntagrico
This is an extension for juntagrico. You can find more information about juntagrico here (https://github.com/juntagrico/juntagrico)
- Run Contribution Rounds (Beitragsrunden) with or without predefined options.
- Transfer the contributions to bill in juntagrico-billing
Install juntagrico-contribution via pip
$ pip install juntagrico-contribution
or add it in your projects requirements.txt
In settings.py add 'juntagrico_contribution',, above 'juntagrico''.
INSTALLED_APPS = [
...
'juntagrico_contribution',
'juntagrico',
]In your urls.py you also need to extend the pattern:
urlpatterns = [
...
path('jcr/', include('juntagrico_contribution.urls')),
]Check the documentation for more details.