diff --git a/README.md b/README.md index 73d8cf26..76940b00 100644 --- a/README.md +++ b/README.md @@ -169,7 +169,7 @@ And voilá!! We've created our first component. # Use the component in a template -First load the `component_tags` tag library, then use the `component_dependencies` and `component` tags to render the component to the page. +First load the `component_tags` tag library, then use the `component_[js/css]_dependencies` and `component` tags to render the component to the page. ```htmldjango {% load component_tags %} @@ -177,10 +177,11 @@ First load the `component_tags` tag library, then use the `component_dependencie My example calendar - {% component_dependencies %} + {% component_css_dependencies %} {% component "calendar" date="2015-06-19" %} + {% component_js_dependencies %} ```