Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What I need is to create set of, let's call it hidden urls, to avoid generating data to analytic. I just don't want google to count my visits.

Anyway idea is that I'll do something like:

# normal user
url(r'^article/', include('articles.urls', namespace='articles', app_name='articles'), {'noga' : False}),
url(r'^about_us/', include('about_us.urls', namespace='about_us', app_name='about_us'), {'noga' : False}),
url(r'^$', 'articles.views.main', {'noga' : False}, name='main'),

# NO Google Analytics "hidden" part for me or for people who do not agree with Google's privacy policy in the future
url(r'^noga/article/', include('articles.urls', namespace='articles', app_name='articles'), {'noga' : True}),
url(r'^noga/about_us/', include('about_us.urls', namespace='about_us', app_name='about_us'), {'noga' : True}),
url(r'^noga/$', 'articles.views.main', {'noga' : True}, name='main'),

and what I'm having problems in template with is something like:

{% url about_us:main noga=noga %}

while noga value is passed to template from view, and does:

{% block ga %}
    {% if not noga %}
        {{ block.super }}
    {% endif %}
{% endblock %}

Unfortunately {% url %} gives me:

Reverse for 'main' with arguments '()' and keyword arguments '{'noga': True}' not found.

Any tips on how to get reversed url based on keyword argument passed this way? Django docs says that passing argument on include is equivalent to passing it on final pattern, so I cannot see why it does not work.

Django I use: 1.4 I've implemented Google Analytics with simple context processor that returns their script and inserts ID from settings.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.