Hook the show_url_patterns view function in to your URLconf to get a page which simply lists all of the named URL patterns in your system - useful for if your template developers need a quick reference as to what patterns they can use in the {% url %} tag.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | from django.core import urlresolvers
from django.http import HttpResponse
intro_text = """Named URL patterns for the {% url %} tag
========================================
e.g. {% url pattern-name %}
or {% url pattern-name arg1 %} if the pattern requires arguments
"""
def show_url_patterns(request):
patterns = _get_named_patterns()
r = HttpResponse(intro_text, content_type = 'text/plain')
longest = max([len(pair[0]) for pair in patterns])
for key, value in patterns:
r.write('%s %s\n' % (key.ljust(longest + 1), value))
return r
def _get_named_patterns():
"Returns list of (pattern-name, pattern) tuples"
resolver = urlresolvers.get_resolver(None)
patterns = sorted([
(key, value[0][0][0])
for key, value in resolver.reverse_dict.items()
if isinstance(key, basestring)
])
return patterns
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.