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

Commit

Permalink
adds docs about configuring django-select2
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanfoulis committed Dec 10, 2012
1 parent 3046069 commit d99c101
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.rst
Expand Up @@ -40,9 +40,19 @@ in ``settings``::
INSTALLED_APPS = (
[...]
'stacks',
'django_select2',
[...]
)

add the ``Django-Select2`` urls::

urlpatterns = patterns('',
[...]
url(r'^select2/', include('django_select2.urls')),
[...]
)


create the database tables::

python manage.py migrate stacks
Expand Down

0 comments on commit d99c101

Please sign in to comment.