I have a django view that lists several urls on external sites.
When I render them I would like to add a few url parameters to each.
These urls are to an external system and thus not listed in my urls.py. Furthermore, some of the links have a hash '#' so it is not as easy as appending a few parameters to the end of the string.
Based on these requirements it seems the url template tag will not be a good fit. I was wondering if there is a custom filter out that to do this.
urltemplate tag is for generating URLs that are within your own site/project. If you want to add links to external sites then why not just put them in the HTML, URL parameters and all??foo=bar&pop=lolis a lot less key strokes then thepip install+add_query="foo=bar"etc.