Metadata-Version: 1.1
Name: django-any-js
Version: 1.0
Summary: Include JavaScript libraries with readable template tags
Home-page: https://edugit.org/nik/django-any-js
Author: Dominik George
Author-email: nik@naturalnet.de
License: UNKNOWN
Description: Django Any-JS
        =============
        
        Description
        -----------
        
        Django-Any-JS helps you at including any combination of JavaScript/CSS
        URLs in your site, with readable settings and template tags.
        
        Usage
        -----
        
        In your settings:
        
        ::
        
            ANY_JS = {
                      'DataTables': {
                                     'js_url': '/javascript/jquery-datatables/dataTables.bootstrap4.min.js',
                                     'css_url': '/javascript/jquery-datatables/css/dataTables.bootstrap4.min.css'
                                    }
                     }
        
        In your template:
        
        ::
        
            {% include_js "DataTables" %}
            {% include_css "DataTables" %}
        
Keywords: django,javascript
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Framework :: Django :: 2.2
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
