I'm building a website with Django. I want to have a string url [already done], but I want the string to be changeable based on variables.
sudocode: variable a = "Hello"
url = "www.facebook.com/a" ----> I want the "a" to be changeable, so if it changes, the url goes to a different website.
What is the best way to do this?
thanks