File diff d7c64b3800af → ff99fef4e9a7
docs/installation.rst
Show inline comments
 
@@ -51,14 +51,19 @@ steps in order to make it available insi
 
   and update the ``INSTALLED_APPS`` to include applications
 
   ``braces``, ``crispy_forms``, and ``conntrackt``.
 

	
 
#. Edit your project's URL configuration file (``urls.py``), and add the
 
   following line to the ``urlpatterns`` setting::
 
#. Edit your project's URL configuration file (``urls.py``).
 

	
 
   Update the import command for urls module to look like::
 

	
 
     from django.conf.urls import url, include
 

	
 
   Add the following line to the ``urlpatterns`` setting::
 

	
 
     url(r'^conntrackt/', include('conntrackt.urls')),
 

	
 
#. Create the necessary tables used for Django Conntrackt by running::
 
#. Create the necessary tables used for *Django Conntrackt*::
 

	
 
   ./manage.py migrate
 
     ./manage.py migrate
 

	
 
After this the Django Conntrackt application will be available under the
 
``/conntrackt/`` path (relative to your Django project's base URL).