Skip to content
This repository has been archived by the owner on Sep 6, 2019. It is now read-only.

Commit

Permalink
Merge pull request #2 from Surgo/develop
Browse files Browse the repository at this point in the history
Fix documentation
  • Loading branch information
sergei-maertens committed Jul 12, 2015
2 parents 8f28c07 + 9d37059 commit 59cbb34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -54,7 +54,7 @@ With Django SystemJS you can replace this with::
{% load system_tags %}
<script src="/path/to/system.js"></script>
<script src="/path/to/config.js"></script>
{% system_import 'my/awesome/app' %}
{% systemjs_import 'my/awesome/app' %}


If `SYSTEMJS_ENABLED` is `False` (default value is `not DEBUG`),
Expand All @@ -71,7 +71,7 @@ Management command

Django SystemJS comes with a management command to create all the
bundles. It does so by checking all your template files and
extracting the `{% system_import '...' %}` template tags.::
extracting the `{% systemjs_import '...' %}` template tags.::

python manage.py systemjs_bundle

Expand Down
4 changes: 2 additions & 2 deletions systemjs/templatetags/system_tags.py
Expand Up @@ -48,11 +48,11 @@ def systemjs_import(parser, token):
Syntax::
{% system_import 'path/to/file' %}
{% systemjs_import 'path/to/file' %}
Example::
{% system_import 'mydjangoapp/js/myapp' %}
{% systemjs_import 'mydjangoapp/js/myapp' %}
Which would be rendered like::
Expand Down

0 comments on commit 59cbb34

Please sign in to comment.