Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
1k views

Django Photologue Tutorial

I have a hard time understanding how photologue works exactly. Is anybody aware of a Example Project Tutorial where I can display a gallery via Django-Photologue. Where Imagelinks are stored in a ...
3
votes
2answers
2k views

Integrating Photologue

I want to integrate photologue with my Django app and use it to display photos in a vehicle inventory...kinda like what is offered by Boost Motor Group Inc. I've already integrated the app so the ...
2
votes
3answers
302 views

django-photologue upload_to

I have been playing around with django-photologue for a while, and find this a great alternative to all other image handlings apps out there. One thing though, I also use django-cumulus to push my ...
2
votes
1answer
2k views

Customising Django admin TabularInline default field

I have a TabularInline admin layout, all works fine except I'd like to have it show something other than the Obj.__unicode__ value on the top left of each row. My TabularInline is a photologue ...
2
votes
2answers
420 views

How to make custom PhotoEffects in Django Photologue?

I'm creating an image gallery in Django using the Photologue application. There are a number of PhotoEffects that come with it. I'd like to extend these and make my own so that I can do more ...
1
vote
1answer
56 views

django-photologue constructs the wrong URLs for photos

I've installed django-photologue and added a handful of photos to the database. The basic site mechanics seem to be working fine, except no photos or thumbnails are displayed. The images and ...
1
vote
0answers
298 views

Template error with django-photologue: 'Permission Denied'

I'm in the process of re-setting up my Django development environment after reinstalling my OS. We use django-photologue with our project, which I installed using easy_install. However, I'm getting a ...
1
vote
3answers
1k views

Django: Photologue does not show images in templates

I am trying to install django-photologue. Everything seems ok, because I install and set up following the official guidelines. I have to upload some photos as examples. However, when viewing a photo ...
1
vote
1answer
276 views

How to iterate over columns of an image?

I want to transform images like this to add an effect to pictures in django as described here. I decided to implement it as a process for the great django-imagekit/photologue My knowledge of PIL ...
1
vote
2answers
816 views

Django-imagekit: how to reduce image quality with a preprocessor_spec?

I've created this simple model class, with a Preprocessor to reduce my photos'quality (the photos'extension is .JPG): from django.db import models from imagekit.models import ImageModel from ...
0
votes
0answers
16 views

Django: Loading Photologue application to Zinnia templates

I am trying to use some of Photologue functionality in my edited Zinnia templates. I want this template syntax to work in my Zinnia template, this is a block from a Photologue template: {% block ...
0
votes
1answer
53 views

Django-photologue ImageModel

This is my first project in django and im using photologue for gallery, which is awesome and i really like it. But there is one thing i dont get, how can i use its ImageModel? I have a blog-app and ...
0
votes
0answers
18 views

django photologue tagging

Is it possible to filter photologue galleries via tagging? Ideally I'd like it done via the url. So the following would display the galleries with the tag in the url: site.com/<tag_name>/
0
votes
1answer
75 views

How to add comments etc to django-photologue photos?

I am trying to make use of a powerful feature in photologue which is batch uplad. The app comes with Pinax but not fully implemented. Pinax only makes use of 'Photos'. I want to add all ...
0
votes
0answers
79 views

Django photologue TemplateSyntaxError

I am rather new to Django and trying to integrate django-photologue 2.2 into a new Pinax project. All is well apart from the fact that when I try to view individual photos, e.g. ...
0
votes
0answers
165 views

Migrate Django Photologue to ImageKit

I'm moving the media for a website to Amazon S3, and I'm running into errors using django-photologue and django-storages. Most of the solutions I've seen recommend using ImageKit as Photologue's ...
0
votes
1answer
40 views

Where Photologue's Photo.get_previous_by_date_added() method defined?

Definition of Photologue model Photo doesn't contain method get_previous_by_date_added, as well as its parent model ImageModel. ImageModel inherits from django models.Model base class which hasn't ...
0
votes
1answer
35 views

is system_user() defined in django?

My original question was actually how to add a User foreign key to Photolog type class (that uses Imagekit) I see an answer to a similar question, but when I tried to implement it, I get global name ...
0
votes
1answer
136 views

Photologue ImageModel required field question (and how to override)

I have a model that inherits from Photologues 'ImageModel'. The user can upload photos and everything works fine, however the problem I am running into is when I am creating a form to edit a photo ...
0
votes
1answer
280 views

photologue django

I am trying to implement the photologue django photo gallery here: http://skam.webfactional.com/blog/2007/08/08/django-based-photo-gallery-tutorial/ I dont understand this part: You need to have ...
0
votes
1answer
97 views

set maximum imagesize for django Photologue

just uploaded some photos via django photologue. And one image, an extreme panorama format will not show properly. its 2200px wide. Is there a limitation to the size of an image and can this ...
0
votes
1answer
616 views

Dynamically create and save image with Django and PIL/Django-Photologue

I want to generate a page of html with dynamic content and then save the result as an image as well as display the page to the user. So, user signs up to attend conference and gives their name and ...
0
votes
2answers
703 views

Django: remove GROUP BY added with extra() method?

Hi (excuse me for my bad english) ! When I make this: gallery_qs = Gallery.objects.all()\ .annotate(Count('photos'))\ .extra(select={'photo_id': ...