diff options
author | Gary Wilson Jr <gary.wilson@gmail.com> | 2010-03-27 00:14:10 +0000 |
---|---|---|
committer | Gary Wilson Jr <gary.wilson@gmail.com> | 2010-03-27 00:14:10 +0000 |
commit | 5256a805ff1c31e4d5112627846291e91c5dc65d (patch) | |
tree | 502a050a0d286d14d264cfe42eeb27e29c619e29 /docs/topics | |
parent | 2881da949fb1a458c7f57fb5f59b40c4cc970e65 (diff) | |
download | django-5256a805ff1c31e4d5112627846291e91c5dc65d.tar.gz |
Fixed #13189 -- Fixed typo in code example, thanks to gabrielhurley for patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12862 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics')
-rw-r--r-- | docs/topics/i18n/internationalization.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/i18n/internationalization.txt b/docs/topics/i18n/internationalization.txt index 721bb6a1dd..fce2a2d8c5 100644 --- a/docs/topics/i18n/internationalization.txt +++ b/docs/topics/i18n/internationalization.txt @@ -488,7 +488,7 @@ Using the JavaScript translation catalog To use the catalog, just pull in the dynamically generated script like this:: - <script type="text/javascript" src={% url django.views.i18n.javascript_catalog %}"></script> + <script type="text/javascript" src="{% url django.views.i18n.javascript_catalog %}"></script> This uses reverse URL lookup to find the URL of the JavaScript catalog view. When the catalog is loaded, your JavaScript code can use the standard |