I am using Nitrous for playing with the Django framework. In tutorial 2 is shown how to change the base_site.html template. I've added in the TEMPLATE_DIRS = ( ) a new line:
'home/action/workspace/mysite/templates',
And in base_site.html I changed the site name title of Django Administration into Administration:
{% trans 'Administration' %}
But I still see no changes on the website. I've tried different TEMPLATE_DIRS like:
'~/workspace/mysite/templates',
'home/action/workspace/mysite/',
'home/action/workspace/mysite/templates/',
And restarting the server. But I am doing something wrong.