Multi-value product attributes addon for Shuup E-Commerce Platform


Keywords
shuup, attributes
License
MIT
Install
pip install shuup-attrim==0.13.1.5

Documentation

Shuup Attrim

This addons allows to create multi-value attributes for Shuup.

Screenshots

Creation of the class color and assignment of a color attribute to a product:

Online Demo

Just a bare shuup installation with the default shuup theme (classic_gray). The site rollbacks itself to the initial state every day.

You can login into the admin panel using the following credentials:

  • login: demo
  • password: demo

The admin panel forms:

Installation

Install using pip:

pip install shuup-attrim

Add attrim to your INSTALLED_APPS setting:

INSTALLED_APPS = (
    # [...]
    'attrim',
)

Apply the migrations:

python manage.py migrate

Collect the static files:

python manage.py collectstatic