How to get the domain name of my site within a Django template?

If you want the actual HTTP Host header, see Daniel Roseman’s comment on @Phsiao’s answer. The other alternative is if you’re using the contrib.sites framework, you can set a canonical domain name for a Site in the database (mapping the request domain to a settings file with the proper SITE_ID is something you have to … Read more

Django templates – split string to array

Django intentionally leaves out many types of templatetags to discourage you from doing too much processing in the template. (Unfortunately, people usually just add these types of templatetags themselves.) This is a perfect example of something that should be in your model not your template. class Game(models.Model): … def screenshots_as_list(self): return self.screenshots.split(‘\n’) Then, in your … Read more

How can I get the domain name of my site within a Django template?

If you want the actual HTTP Host header, see Daniel Roseman’s comment on @Phsiao’s answer. The other alternative is if you’re using the contrib.sites framework, you can set a canonical domain name for a Site in the database (mapping the request domain to a settings file with the proper SITE_ID is something you have to … Read more