Metadata-Version: 1.1
Name: django-reactjs
Version: 0.2.3
Summary: Integrate reactjs with django
Home-page: https://bitbucket.org/rsalmaso/django-reactjs
Author: Raffaele Salmaso
Author-email: raffaele@salmaso.org
License: MIT
Description: # django-reactjs #
        A simple templatetag to load reactjs libraries.
        
        ## install ##
        Just include `reactjs` into your `INSTALLED_APPS`
        ```
        #!python
        
        INSTALLED_APPS += [ "reactjs" ]
        ```
        
        
        ## templatetag ##
        
        Load the templatetag
        ```
        #!html
        {% load reactjs %}
        ```
        
        ### reactjs ###
        Include the reactjs file(s) as `<scrip...></script>` tag(s).
        ```
        #!html
        {% reactjs %}
        ```
        
        ### reactjs-with-addons ###
        Include the reactjs-with-addons file(s) as `<scrip...></script>` tag(s).
        ```
        #!html
        {% reactjs-with-addons %}
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: JavaScript
