Ticket #13189: 13189_patch.diff

File 13189_patch.diff, 697 bytes (added by Gabriel Hurley, 14 years ago)

Adds the missing quotation mark.

  • docs/topics/i18n/internationalization.txt

     
    488488
    489489To use the catalog, just pull in the dynamically generated script like this::
    490490
    491     <script type="text/javascript" src={% url django.views.i18n.javascript_catalog %}"></script>
     491    <script type="text/javascript" src="{% url django.views.i18n.javascript_catalog %}"></script>
    492492
    493493This uses reverse URL lookup to find the URL of the JavaScript catalog view.
    494494When the catalog is loaded, your JavaScript code can use the standard
Back to Top