Hi All,

Just wondering what the best way to do this sort of thing is:

{% with last_tweet_sent this_user as sent_at %}
        {{ sent_at|naturalday:_("MONTH_DAY_FORMAT")|capfirst}}
{% endwith %}

I've got a function "last_tweet_sent" in a templatetags module that
takes a user and spits back the last time they sent a tweet.

I'd like to keep the formatting of the date in the template rather
than in the templatetag module (best practice?)

But I can't use the with statement to put the result of my function
call in a variable - I guess because of the spacing there for calling
the function with an argument.

Any suggestions?

Cheers,

Guy
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to