vote up 2 vote down star

Hello,

I need to retrieve an optional number saved in DB , to a custom template tag i made . which to retrieve , a variable ( a photo ID ) included in this Gallery . within the gallery loop .

{% get_latest_photo   {{photo.id}}  %}

How to accomplish that ?!

P.s : I know that can be done with inclusion tag , but in the present time how to make it fix this one !

Edit the template html file :

{% for album in albumslist %}

    {% get_latest_photo   photo.id  %} 
    {% for photo in recent_photos %}
<img src='{% thumbnail photo.image 200x80 crop,upscale %}' alt='{{ photo.title }}' />
    {% endfor %}
    {{ album.title }}
{% endfor %}

templatetag

from django.template import Library, Node
from akari.main.models import *
from django.db.models import get_model

register = Library()

class LatestPhotoNode(Node):
    def __init__(self, num):
    	self.num = num
    def render(self, context):
    	photo = Photo.objects.filter(akar=self.num)[:1]
    	context['recent_photos'] = photo
    	return ''

def get_latest_photo(parser, token):
    bits = token.contents.split()
    return LatestPhotoNode(bits[1])

get_latest_photo = register.tag(get_latest_photo)

P.s Its working very well when i replace album.id (in {% get_latest_photo photo.id %} ) with a number which acts as an album id and retrieve the photo from .

Regards H. M.

flag

0% accept rate
If you tell us how the code misbehaves, it will be easier for us to give you answers. – Ned Batchelder Aug 13 at 1:40
Can you post the code of the tag? – Ned Batchelder Aug 13 at 2:17

3 Answers

vote up 0 vote down

To evaluate correctly the num variable I think you should modify your LatestPhotoNode class like this:

class LatestPhotoNode(Node):
    def __init__(self, num):
        self.num = template.Variable(num)

    def render(self, context):
        num = self.variable.resolve(self.num)
        photo = Photo.objects.filter(akar=num)[:1]
        context['recent_photos'] = photo
        return ''
link|flag
Thank you , already fixed it using this . its simple – Hamza Aug 16 at 12:50
vote up 1 vote down

Are you sure your template tag is written properly? For example, you need to use Variable.resolve to properly get the values of variables: Passing Template Variables to the Tag

link|flag
Hello Ned , How to use Variable.resolve , am searching about that now , can you link me an example please ?! – Hamza Aug 13 at 1:43
Just a classic custom template tag which will filter the photos and get the latest photo added with this album . i Edited the main Question . – Hamza Aug 13 at 1:48
Hmm , WIll do soon , but somehow i believe the Custom Template tag is not the problem , cause it works very fine when i replace the photo.id with a number with filter the Photo with the album.id ! – Hamza Aug 13 at 2:22
Hello Ned , i fixed it using this codespatter.com/2009/01/… . Thank You – Hamza Aug 13 at 4:41
vote up 2 vote down

You don't put the brackets around variables when you use them in template tags.

{% get_latest_photo photo.id %}
link|flag
tried that before i add the brackets but didn't work at all ! – Hamza Aug 13 at 0:51
Thank you fixed it :) – Hamza Aug 13 at 4:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.