Metadata-Version: 2.1
Name: djangocms-opensystem
Version: 1.0.0
Summary: A plugin for Django CMS that displays OpenSystem widgets.
Home-page: https://gitlab.com/kapt/open-source/djangocms-opensystem
Author: Dev Kapt
Author-email: dev@kapt.mobi
License: UNKNOWN
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
Requires-Dist: django (<3.0)
Requires-Dist: django-cms

# djangocms-opensystem

A plugin for Django CMS that displays OpenSystem widgets.

## Installation

1. Install module using pipenv:
  ```
  pipenv install djangocms-opensystem
  ```

  *Or pip:*

  ```
  pip install djangocms-opensystem
  ```

2. Add it to your installed apps:
  ```
  "djangocms_opensystem",
  ```

3. Apply migrations
  ```
  python manage.py migrate djangocms_opensystem
  ```

4. Include your BASKET_ID and INTEGRATION_ID in your settings
  ```python
  DJANGOCMS_OPENSYSTEM_BASKET_ID = "<your basket ID>"
  DJANGOCMS_OPENSYSTEM_INTEGRATION_ID = <your integration ID>
  ```

5. Make sure to have a sekizai’s `{% render_block "bottom_js" %}` in your base template

