Metadata-Version: 1.1
Name: django-tips
Version: 0.7.0
Summary: Show tip of the day cards on your site.
Home-page: https://github.com/trojsten/django-tips
Author: Michal Hozza
Author-email: mhozza@gmail.com
License: BSD
Description-Content-Type: UNKNOWN
Description: =============================
        django-tips
        =============================
        
        .. image:: https://badge.fury.io/py/django-tips.png
            :target: https://badge.fury.io/py/django-tips
        
        .. image:: https://travis-ci.org/trojsten/django-tips.png?branch=master
            :target: https://travis-ci.org/trojsten/django-tips
        
        Show tip of the day cards on your site.
        
        Quickstart
        ----------
        
        Install django-tips::
        
            pip install django-tips
        
        Then use it in a project::
        
            import tips
        
        Requirements
        ------------
        
        * django > 1.8
        * djangorestframework
        * markdown
        
        Recommanded packages
        --------------------
        
        * django-sekizai
        
        Building frontend
        -----------------
        
        From tips_frontend directory run::
        
            npm run dev
        
        or production build::
        
            npm run build
        
        Usage
        -----
        place where you want to show tips::
        
            {% include "tips/tips.html" %}
        
        include csrf-token ajax setup script if you have csrf protection enabled (you can find the script in the example)::
        
            <script src="{% static "js/csrf_token.js" %}"></script>
        
        Development
        -----------
        ::
        
            pip install -e .
            pip install -r requirements_dev.txt
            cd example
            ./manage.py migrate
            ./manage.py loaddata fixtures/initial_data.json
            ./manage.py createsuperuser
            ./manage.py runserver
        
        Credits
        -------
        
        Tools used in rendering this package:
        
        *  Cookiecutter_
        *  `cookiecutter-djangopackage`_
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`cookiecutter-djangopackage`: https://github.com/trojsten/cookiecutter-djangopackage
        
        
        
        
        History
        -------
        
        0.1.0 (2016-06-10)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: django-tips
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
