thank you for replying so fast

Well im looking for tutorials on building a simple photo app to start
with

i started to mess around with the following in my models.py

from django.db.models import *

# Create your models here.
class photo(Model):
        image= ImageField(upload_to="photos/")
        title= CharField(maxlength=150)
        uploaded=  DateTimeField()



        class Admin:
                list_display = ('image','title','uploaded')



but here is the catch I want to add a field to add the captions and i
want to show the thumbnails
of the pic. from here on I was lost. because i dont know aboutt th
int.py or the views.py

If you have a more complex photo app ill take it. since I am just
starting to learn the language. Im all confuded
since I am just starting to mess around with making anything. Or if
you can point me out to the right place to read instrucitons ill
appreciate any help. Im looking at the book for reference but think of
me as a slow processor


thanks



--~--~---------~--~----~------------~-------~--~----~
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