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.
Installation:
Package:
$ git clone https://github.com/gotlium/django-collage.git
$ cd django-collage && sudo python setup.py install
OR
$ sudo pip install django-collage
Add the collage application to INSTALLED_APPS in your settings file (usually settings.py)
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
Release history Release notifications | RSS feed
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)
File details
Details for the file django-collage-1.0.1.tar.gz
.
File metadata
- Download URL: django-collage-1.0.1.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86b075293146b6564bf60f75ce0f86753582f4d8a74f5921d5d193b0dea4a461 |
|
MD5 | bb12386e95fc7f2e9ee3754bdfcd2603 |
|
BLAKE2b-256 | 7766676cb5e095d9887ca4838d448a5c7ea26c1c9f194eace6ad93a843d6a9a1 |