Metadata-Version: 1.1
Name: django-advertising
Version: 0.0.2
Summary: Django application for show advertising configurable.
Home-page: https://github.com/mapeveri/django-advertising
Author: Peveri Martin
Author-email: martinpeveri@gmail.com
License: BSD License
Description: Django-Advertising
        ==================
        
        Django application for show advertising configurable.
        
        Installing
        ----------
        
        With pip::
        	
        	pip install django-advertising
        
        
        Quick start
        -----------
        
        1. Add 'advertising' to INSTALLED_APPS::
        	
        	
        	INSTALLED_APPS = (
                ...
                'advertising',
             )
        
        2. Apply migrations::
        	
        	python manage.py migrate
        
        3. Add this script in your file .html to use::
        
        	<script src="{% static 'advertising/js/events.js' %}"></script>
        
        4. Add this line in your file .html to use::
        	
        	{% load image %}
        	{% get_images_advertising width=300 height=300 campaign='CMP1' %}
        
        
        Parameters
        ----------
        
        1. width and height: Element size.
        2. Campaign: Id unique Advertising Model. (String)
        
        Contribute
        ----------
        
        1. Fork this repo and install it
        2. Follow PEP8, Style Guide for Python Code
        3. Write code
        4. Write unit test
        5. Send pull request
         
        
Platform: UNKNOWN
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: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
