Metadata-Version: 1.1
Name: fluentcms-campaign
Version: 0.9.4
Summary: A basic newsletter app for django-fluent-pages
Home-page: https://github.com/bashu/fluentcms-campaign
Author: Basil Shubin
Author-email: basil.shubin@gmail.com
License: BSD License
Download-URL: https://github.com/bashu/fluentcms-campaign/zipball/master
Description: fluentcms-campaign
        ==================
        
        fluentcms-campaign is a newsletter campaign management app, that uses
        django-fluent-contents_ blocks to define the e-mail templates.
        
        .. image:: https://img.shields.io/pypi/v/fluentcms-campaign.svg
            :target: https://pypi.python.org/pypi/fluentcms-campaign/
        
        .. image:: https://img.shields.io/github/license/bashu/fluentcms-campaign.svg
            :target: https://pypi.python.org/pypi/fluentcms-campaign/
        
        .. image:: https://landscape.io/github/bashu/fluentcms-campaign/develop/landscape.svg?style=flat
            :target: https://landscape.io/github/bashu/fluentcms-campaign/develop
        
        Installation
        ============
        
        First install the module, preferably in a virtual environment. It can be installed from PyPI:
        
        .. code-block:: shell
        
            pip install fluentcms-campaign
        
        
        Backend Configuration
        ---------------------
        
        First make sure the project is configured for fluentcms-emailtemplates_.
        
        Then add the following settings:
        
        .. code-block:: python
        
            INSTALLED_APPS += (
                'campaign',
            )
        
        Update your urls.py file:
        
        .. code-block:: python
        
            urlpatterns += [
                url(r'^campaign/', include('campaign.urls')),
            ]
        
        The database tables can be created afterwards:
        
        .. code-block:: shell
        
            python ./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-campaign: https://github.com/arneb/django-campaign
        .. _django-fluent-contents: https://github.com/edoburu/django-fluent-contents
        .. _fluentcms-emailtemplates: https://github.com/edoburu/fluentcms-emailtemplates
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
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.4
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: Django (>=1.4)
