I have a list of urls that I have imported in my settings.py file via:
from myproject.image_folders_link import Links
Now my image_folders_link
contains the following constants:
MY_image_doctors_link = "http://www.mywebsite.com/images/doctors"
MY_image_patients_link = "http://www.mywebsite.com/images/patients"
Now I want to use it in my Django template. How I can pass this?