Metadata-Version: 2.0
Name: fluentcms-privatenotes
Version: 1.0
Summary: Private sticky notes in the admin of django-fluent-contents
Home-page: https://github.com/edoburu/fluentcms-privatenotes
Author: Diederik van der Boor
Author-email: opensource@edoburu.nl
License: Apache 2.0
Download-URL: https://github.com/edoburu/fluentcms-privatenotes/zipball/master
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.7
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: Django (>=1.7)
Requires-Dist: django-fluent-contents (>=1.0.4)

fluentcms-privatenotes
======================

.. image:: https://img.shields.io/travis/edoburu/fluentcms-privatenotes/master.svg?branch=master
    :target: http://travis-ci.org/edoburu/fluentcms-privatenotes
.. image:: https://img.shields.io/pypi/v/fluentcms-privatenotes.svg
    :target: https://pypi.python.org/pypi/fluentcms-privatenotes/
.. image:: https://img.shields.io/pypi/dm/fluentcms-privatenotes.svg
    :target: https://pypi.python.org/pypi/fluentcms-privatenotes/
.. image:: https://img.shields.io/badge/wheel-yes-green.svg
    :target: https://pypi.python.org/pypi/fluentcms-privatenotes/
.. image:: https://img.shields.io/pypi/l/fluentcms-privatenotes.svg
    :target: https://pypi.python.org/pypi/fluentcms-privatenotes/
.. image:: https://img.shields.io/codecov/c/github/edoburu/fluentcms-privatenotes/master.svg
    :target: https://codecov.io/github/edoburu/fluentcms-privatenotes?branch=master

Adding Sticky-notes in the admin interface for content.

.. image:: https://github.com/edoburu/fluentcms-privatenotes/blob/master/docs/images/fluentcms-privatenotes.png
   :width: 477
   :height: 154


Installation
============

First install the module, preferably in a virtual environment. It can be installed from PyPI:

.. code-block:: bash

    pip install fluentcms-privatenotes

First make sure the project is configured for django-fluent-contents_.

Then add the following settings:

.. code-block:: python

    INSTALLED_APPS += (
        'fluentcms_privatenotes',
    )

    FLUENT_CONTENTS_PLACEHOLDER_CONFIG = {
        'slot name': {
            'plugins': ('PrivateNotesPlugin', ...),
        },
    }

The database tables can be created afterwards:

.. code-block:: bash

    ./manage.py migrate


Contributing
------------

If you like this module, forked it, or would like to improve it, please let us know!
Pull requests are welcome too. :-)

.. _django-fluent-contents: https://github.com/edoburu/django-fluent-contents


