wow. thank you very much! i didn't know the extra string passed in patterns 
inside a tuple was used in that way too. Does this have to do with 
get_absolute_url too?


This is what I did:

{% url satchmo_shop_home as home %}
{% if request.path == home %}<!-- do stuff -->{% endif %}

urlspatterns += patterns('satchmo_store.shop.views',
    (r'^$', 'home.home', {}, 'satchmo_shop_home'),
    ...
)

On Sunday, March 25, 2012 12:49:33 AM UTC-7, Kev Dwyer wrote:
>
> easypie wrote:
>
> > I'm trying to check {% if homepage %} then show <img ...> {% endif %}
> > 
> > I'm not sure how to go about a test to check the current page if it's my
> > homepage. Do I need to mess around with context processors? What's the
> > usual way of doing it? And how would the {% if ... %} look like?
> > 
>
> Assuming your home is named "home" in your urls.py, you could try:
>
> {% url home as home %}
>
> {% if request.path == home %}<!-- do stuff -->{% endif %}
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/Hizfo9TSvBIJ.
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