Skip to main content

django collages

Project description

What’s that

This reusable Django app can help you to create collages on your website for gallery or another entities. For example, I’m use it for applications.

https://raw.github.com/gotlium/django-collage/master/demo/screens/1.jpg https://raw.github.com/gotlium/django-collage/master/demo/screens/2.jpg https://raw.github.com/gotlium/django-collage/master/demo/screens/3.jpg https://raw.github.com/gotlium/django-collage/master/demo/screens/4.jpg https://raw.github.com/gotlium/django-collage/master/demo/screens/5.jpg https://raw.github.com/gotlium/django-collage/master/demo/screens/6.jpg https://raw.github.com/gotlium/django-collage/master/demo/screens/7.jpg

Installation:

  1. Package:

$ git clone https://github.com/gotlium/django-collage.git

$ cd django-collage && sudo python setup.py install

OR

$  sudo pip install django-collage
  1. Add the collage application to INSTALLED_APPS in your settings file (usually settings.py)

  2. Sync database (./manage.py syncdb)

Usage:

models.py

class Entity(models.Model):
    name = models.CharField(max_length=255, unique=True)

    def get_images(self):
        return Images.objects.values_list('image', flat=True).filter(
            entity=self)


class Images(models.Model):
    entity = models.ForeignKey(Entity)
    image = models.ImageField()

view.html

{% load collage %}
{% load cache %}

{% cache 31536000 images view.id %}
    {% get_collage for view.get_images as images %}
    <div>
      {% for image in images %}
        <a href="{{ image.src }}" style="{{ image.css }}">
          <img src="{{ image.url }}">
        </a>
      {% endfor %}
    </div>
{% endcache %}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-collage-1.0.1.tar.gz (9.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page