I want to be able to do an if tag based on the current URL value.
for example, if the current page\'s url is accounts/login/ then don\'t show a link, wi
accounts/login/
If you pass the "request" object to your template, then you are able to use this:
{% if request.get_full_path == "/account/login/" %}