how to get variable from setings django

34

how to get variable from setings django -

Try with this: 
from django.conf import settings 
then,
settings.VARIABLE 
to access that variable.

VARIABLE should be in capital letter. It will not work otherwise.

Comments

Submit
0 Comments