Skip to content
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.

Django app for creating simple gallery objects

Notifications You must be signed in to change notification settings

imagescape/django-galleryserve

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Dependencies:
PIL

To install:
pip install galleryserve

Add 'galleryserve' to INSTALLED_APPS

Configuration Options:
GALLERYSERVE_EXCLUDE_FIELDS - This can be added as a list in your settings.py 
file to exclude certain fields from appearing in the admin.

Template tag example:
{% load gallerytags %}

{% get_gallery name %}
{% for slide in gallery %}
<div title="{{ slide.title }} - {{ slide.credit }}">
{% if slide.url %}<a href="{{ slide.url }}">{% endif %}
{% if slide.image %}<img src="{{ slide.image.url }}" alt="{{ slide.alt }}" />{% endif %}
{% if slide.url %}</a>{% endif %}
{% if slide.video_url %}<a href="{{ slide.video_url }}">{{ slide.title }}</a>{% endif %}
{{ slide.title }} - {{ slide.credit }}<br />
{{ slide.content|safe }}
</div>
{% endfor %}


Changes in 0.1.5 - 06-27-13
Allow for gallery title to be passed in as context variable instead of always
treating it as a string.

Changes in 0.1.3 - 11-02-12
Moved to git. Added ANTIALIAS to image processing

Changes in 0.1.2 - 10-22-11
Fail silently on gallery not existing

Changes in 0.1.1 - 9-20-11
Added random boolean to control whether gallery item sort should be random
psql command to insert column:
alter table galleryserve_gallery ADD column random boolean not null default false;

About

Django app for creating simple gallery objects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages