Re: How to Detect Current Page as Homepage?
You can retrieve the url variable that you are interested in with evaluating this variable
request.pathUse this link for more details
http://www.djangobook.com/en/2.0/chapter07/
This is an example from the above source
def current_url_view_good(request): return HttpResponse("Welcome to the page at %s" % request.path)
On Sunday, March 25, 2012 3:49:33 AM UTC-4, 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/-/gXYW34-7QAoJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home