Hello, a common problem I have is that I have references in my main template like CSS or an background image:
<link rel="stylesheet" type="text/css" href="styles.css" /> This template is used within different paths. Therefore I need to have the styles.css availabe in every path the template could be used. An alternative would be give the entire URL href="http://xgm.de/styles.css. But then I need to change that line everytime when I deploy my app from localhost to a domain. Another working solution is to model the regexp in a way that styles.css is always available: r"^.*styles\.css$" It works but makes caching for browsers impossible and clutters the paths. Is there a tag like {% domain %} that gives me the domain and I can construct a path like http://xgm.de/styles.css dynamically (and it changes to http://localhost:8000/styles.css when I am on localhost)? Or how is this problem commonly solved with Django? Thanks, Florian --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---