November 2015
Beginner to intermediate
840 pages
26h 30m
English
url Template Tag to Create URL Paths for the Navigation MenuI’m not going to harp about DRY much longer: hopefully you know the drill. Using the url template tag is the name of the game here.
With regular expressions that lack character sets, we can use url with only the name of a URL pattern. To generate the links in our navigation, our code (replacing the hard links) is pretty straightforward, as shown in Example 6.18.
Example 6.18: Project Code
templates/base.html in afd3be6931
27 <a href="{% url 'blog_post_list' %}"> . ... 30 <a href="{% url 'organizer_startup_list' %}"> . ... 33 <a href="{% url 'organizer_tag_list' %}">
This code outputs exactly what we previously ...
Read now
Unlock full access