On 8/3/06, skullvulture <[EMAIL PROTECTED]> wrote:
> In the tutorial you create a custom method was_published_today.  How
> can you access it in the template?  I'm using generic views.  Do I have
> to write my own more complicated view to access it?  Thanks.

Hi skullvulture,

To access methods of an object in templates, just use "dot" notation, like this:

    {{ poll.was_published_today }}

Or, in an "if" tag:

    {% if poll.was_published_today %}
        Published today!
    {% endif %}

Adrian

-- 
Adrian Holovaty
holovaty.com | djangoproject.com

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

Reply via email to