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 details)

Uploaded Source

File details

Details for the file django-collage-1.0.1.tar.gz.

File metadata

File hashes

Hashes for django-collage-1.0.1.tar.gz
Algorithm Hash digest
SHA256 86b075293146b6564bf60f75ce0f86753582f4d8a74f5921d5d193b0dea4a461
MD5 bb12386e95fc7f2e9ee3754bdfcd2603
BLAKE2b-256 7766676cb5e095d9887ca4838d448a5c7ea26c1c9f194eace6ad93a843d6a9a1

See more details on using hashes here.

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