Skip to content

juntagrico/juntagrico-custom-sub

Repository files navigation

juntagrico-custom_sub

juntagrico-ci Maintainability Test Coverage image image

This is an extension for juntagrico. You can find more information about juntagrico here (https://github.com/juntagrico/juntagrico).

This extension provides support for custom composition of subscriptions. Each user can select the amount of predefined products in his or her subscription. A subscription has a total amount of available units and each product can be assigned a size in these units.

The extension also creates depot lists and packing lists that describe which products should be delivered to a depot and by which user they should be collected.

Installation

Install juntagrico-badge via pip

$ pip install juntagrico-custom-sub

or add it in your projects requirements.txt

In settings.py add 'juntagrico_custom_sub',.

INSTALLED_APPS = [
    ...
    'juntagrico',
    'juntagrico_custom_sub',
]

In your urls.py you also need to extend the pattern:

urlpatterns = [
    ...
    path('', include('juntagrico_custom_sub.urls')),
]