One of the things django does for you is make 'settings' available  
everywhere. So if you want to use these constants in a template, you  
should be able to do this in a view:

site_name = settings.SITE_NAME

and then pass 'site_name' into a template.

Sure hope that's correct...

E


On Jun 16, 2008, at 12:13 AM, Kless wrote:

>
> I've added the next variables on settings.py -rather than use sites
> module for a single site-. How use the new variable added in the
> templates?
>
> SITE_NAME = 'Something'
> SITE_URL = 'http://something.com'
>
> from django.conf import settings.SITE_NAME ?? Where add it?
>
> >


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to