Skip to content

archonoff/django-banner-rotator

 
 

Repository files navigation

README

Banner Rotation App for Django.

  • Tracks clicks and views.
  • Supports the weight of the banner, banners with large weight are shown more often.
  • You can create ad campaigns.

Setup

Get the code via git:

git clone git://github.com/martinogden/django-banner-rotator.git django-banner-rotator

Add the django-banner-rotator/banner_rotator folder to your PYTHONPATH.

Edit to settings.py:

INSTALLED_APPS = (

    "banner_rotator",

)

Edit to urls.py:

urlpatterns = patterns('',

    url(r'^banner_rotator/', include('banner_rotator.urls')),

)

Add the template:

{% load banners %}
{% banner place-slug %}

or

{% load banners %}
{% banner place-slug as banner %}
{% if banner %}
    <a href="{% url banner_click banner.id %}?place_slug=place-slug"><img src="{{ banner.file.url }}" alt=""/></a>
{% endif %}

About

Simple Banner Rotation App for Django

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 91.5%
  • HTML 8.5%