Skip to content

roverdotcom/django-daguerre

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

README

Django Daguerre makes it easy to adjust images on-the-fly without slowing down your templates and without needing to generate everything ahead of time with a cron job. You don't need to make any changes to your models; it Just Works.

{% load daguerre %}
<img src="{% adjust my_model.image width=200 height=400 %}" />

{% adjust_bulk my_queryset "method.image" width=200 height=400 as adjusted_list %}
{% for my_model, image in adjusted_list %}
  <img src="{{ image }}" />
{% endfor %}
code

http://github.com/oberlin/django-daguerre

docs

http://readthedocs.org/docs/django-daguerre/

build status

build-image

Requirements

  • Python 2.6+
  • PIL 1.1.7 (Or Pillow)

Installation

You can install the latest version of Daguerre using pip:

pip install django-daguerre

You can clone the repository yourself at https://github.com/oberlin/django-daguerre.

python

Setup

Ensure that 'daguerre' is in your project's INSTALLED_APPS:

INSTALLED_APPS = (
    'daguerre',
    ...
)

Add the following or similar anywhere in your URLconf:

urlpatterns = patterns('',
    url(r'^daguerre/', include('daguerre.urls')),
    ...
)

Testing

We recommend running tox from the repository's root directory, but you can also run test_project/manage.py test daguerre.

Packages

No packages published

Languages

  • Python 77.4%
  • JavaScript 19.7%
  • Shell 2.9%