On Oct 24, 1:35 am, Page <[EMAIL PROTECTED]> wrote:
> I'm new to Django and Python but trying to catch on. I have an image
> model for a portfolio page. I also have a model for the portfolio
> information for that page.
>
> After creating a template for the portfolio item detail page I can
> pull in of the fields by simply including a template tag like
> {{ object.size }} and it pulls all of them in.
>
> But I cannot for the life of me get the image to work. The image class
> is named PortfolioImage and I have tried endless variation of
> {{ image.PortfolioImage }} etc using object and everything else I
> came accross. The app is named portfolio so I've tried
> portfolio.PortfolioImage and endless combinations as well.
>
> I've looked at the documentation in the Admin section of the site and
> it has information on the models and the fields available and has
> image available, I just can't seem to get it to pull in the URL into
> the <img> tag in the template.
>
> Am I just missing some Python context somewhere or is there something
> I need to do to make the image available in my template.
>
> Any help greatly appreciated.
The fact that you are using {{ object.size }} makes me think that you
are using generic views. If this is the case you should be able to
use {{ object.imagefieldname }} where imagefieldname is the name that
you used in your models.py If you are not using generic views I
would need to see the relevant sections of your models.py and views.py
to tell you what you need.
Steve
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---