On Feb 8, 11:44 am, "plungerman" <[EMAIL PROTECTED]> wrote:
> i have a ROOT_URL value set in my settings.py file.  i use this
> throughout all applications and at the template level, where i have
> created a template tag to make it available as {%root_url%}
>
> def root_url():
>     if settings.ROOT_URL[1:] == "":
>         ru = settings.ROOT_URL
>     else:
>         ru = settings.ROOT_URL + "/"
>     return ru
>
> register.simple_tag(root_url)
>
> <a href="{%root_url%}foo/bar/
> {{object.id}}/">{{ object.name }}</a>
>
> you could also set it up as a custom context processor, which would
> allow you to call it from any template without having to load a
> template tag on each template.
>
plungerman,

thanx a lot, this is what i nedded ;)

skink


--~--~---------~--~----~------------~-------~--~----~
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