As for impolite, personally I have a bigger problem with subjects
changing back and forth, but that's me...

Anyway, Naco, you're in the ballpark. If it were me, I'd do something
like:

 class Photo(models.Model):
        image= ImageField(upload_to="photos/")
        title= CharField(maxlength=100)
        caption = CharField(maxlength=200)
        uploaded=  DateTimeField(auto_now=True)

        class Admin:
                pass

That will give you your caption, automatically set the uploaded field
so you don't have to, and just pass everything to admin, 'cause it's
easier. Note... I'm really not sure photos/ is a valid path, but then,
I don't know your setup. Make sure it's what you want.

Depending on what you set for MEDIA_ROOT and MEDIA_URL, that should
put the files someplace like /media/photos/

Now, for the view, unless there's something fancy you need to do I'd
just pass the as a generic list view:
(r'^photos/$',
'django.views.generic.list_detail.object_list',dict(queryset=Photo.objects.all()))

That will send all your photos and their info to your template.

Then in the template, you'll have to figure out HOW you want to pass
these. Personally, I usually use slideshowpro (passing the
generic_list to images.xml), but for the sake of brevity, we'll assume
something like:

<dl>
{%for photo in photo_list%}
<dt><img src="{{photo.photo}}" alt="{{photo.title}}" /></dt>
<dd>{{photo.caption}}</dd>
{% endfor %}
</dl>

There's almost surely errors in the above code, so you won't want to
use it verbatim, but I'm just trying to walk you through what's going
on. Make a note of exactly what {{photo.photo}} spits out. You may
have to tweak the path a little:  <img src="/media/
{{photo.photo}}" ... />. Again, I don't know your exact setup.



On Jul 6, 9:26 am, [EMAIL PROTECTED] (Jason F. McBrayer) wrote:
> Naco <[EMAIL PROTECTED]> writes:
> > Well im looking for tutorials on building a simple photo app to start
> > with
>
> Have a look at stockphoto
> (http://www.carcosa.net/jason/software/django/stockphoto/).  It is a
> bit out of date, and has a few bugs and so forth that are on my to-fix
> list, but it is basically a minimalistic photogallery app that is
> intended to integrate into any django-based site.
>
> --
> +-----------------------------------------------------------+
> | Jason F. McBrayer                    [EMAIL PROTECTED]  |
> | If someone conquers a thousand times a thousand others in |
> | battle, and someone else conquers himself, the latter one |
> | is the greatest of all conquerors.  --- The Dhammapada    |


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to