Hello!
I read the manual django-photologue (
http://code.google.com/p/django-
photologue/w/list) but found no instructions on how to use the
framework to integrate an application. I need a house that has a photo
gallery.
I tested an import (from photologue.models import ImageModel) in
models.py an import but not found by Eclipse Helios.
if I have the class, example:
class House(models.Model):
title = models.CharField(max_length=50)
area = models.CharField(max_length=20, blank=True)
price = models.DecimalField(max_digits=15, decimal_places=2)
How can I integrate django-photologue application to have a photo
gallery of the house?
Can anyone help?
Thanks!!