diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-07-18 20:43:57 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-07-18 20:43:57 +0000 |
| commit | a7237aaface05fc332a19475bcc27df056eaca9a (patch) | |
| tree | 6e625680ac81e1634b1f3236ff8afb30401c8eb6 | |
| parent | 12c04fbf293f49f007176660a2b1fb4e279eedee (diff) | |
Fixed #71 -- Changed default admin base_site template to use example.com instead of mysite.com. Thanks, pb@e-scribe.com
git-svn-id: http://code.djangoproject.com/svn/django/trunk@183 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/conf/admin_templates/base_site.html | 2 | ||||
| -rw-r--r-- | docs/tutorial02.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/django/conf/admin_templates/base_site.html b/django/conf/admin_templates/base_site.html index aec857677f..8e0874e401 100644 --- a/django/conf/admin_templates/base_site.html +++ b/django/conf/admin_templates/base_site.html @@ -4,7 +4,7 @@ {% block branding %} <h1 id="site-name">Django administration</h1> -<h2 id="site-url"><a href="http://www.mysite.com/">mysite.com</a></h2> +<h2 id="site-url"><a href="http://www.example.com/">example.com</a></h2> {% endblock %} {% block nav-global %}{% endblock %} diff --git a/docs/tutorial02.txt b/docs/tutorial02.txt index 114ba41aac..accf88abee 100644 --- a/docs/tutorial02.txt +++ b/docs/tutorial02.txt @@ -443,7 +443,7 @@ think they should. Customize the admin look and feel ================================= -Clearly having "Django administration" and "mysite.com" at the top of each +Clearly having "Django administration" and "example.com" at the top of each admin page is ridiculous. It's just placeholder text. That's easy to change, though, using Django's template system. |
