Metadata-Version: 1.1
Name: django-activecollab-digger
Version: 0.6.3
Summary: Django ActiveCollab application
Home-page: https://github.com/kingsdigitallab/django-activecollab-digger
Author: King's Digital Lab
Author-email: kdl-info@kcl.ac.uk
License: MIT
Description: ActiveCollab Digger
        ===================
        
        Django application to integrate ActiveCollab issue reporting into Django based projects.
        
        To use:
        
        #. ``pip install django-activecollab-digger``
        #. add ``activecollab_digger`` to ``INSTALLED_APPS``
        #. add ``url(r'^digger/', include('activecollab_digger.urls'))`` to ``urls.py``
        #. add the settings::
        
            # ActiveCollab API URL
            AC_BASE_URL = 'https://app.activecollab.com/COMPANY_ID'
            AC_API_URL = AC_BASE_URL + '/api/v1/'
            # ActiveCollab API token
            AC_TOKEN = ''
            # ActiveCollab project ID
            AC_PROJECT_ID = 1
            # ActiveCollab user ID to create the issues
            AC_USER = 1
        #. in settings add the context processor ``activecollab_digger.context_processors.activecollab_digger`` to ``TEMPLATES['OPTIONS']['context_processors']``
           
        
        Notes
        -----
        
        The application needs to be behind authentication.
        
Keywords: django activecollab
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Utilities
