I’m doing more Django work and find myself contrasting how Rails does things and how things are done in Django. Routing is one of those things. Both Django and Rails want you to use their systems to dynamically create URLs to other places on the site, instead of hard-coding the path in the part of the tag. This makes life easier both now and in…