<h1>Configuring Django Admin Sortable<aclass="headerlink"href="#configuring-django-admin-sortable"title="Permalink to this headline">¶</a></h1>
<p>Configuring django-admin-sortable is quite simple:</p>
<blockquote>
<div><olclass="arabic simple">
<li>Add <codeclass="docutils literal"><spanclass="pre">adminsortable</span></code> to your <codeclass="docutils literal"><spanclass="pre">INSTALLED_APPS</span></code>.</li>
<li>Ensure <codeclass="docutils literal"><spanclass="pre">django.core.context_processors.static</span></code> is in your <codeclass="docutils literal"><spanclass="pre">TEMPLATE_CONTEXT_PROCESSORS</span></code>.</li>
</ol>
</div></blockquote>
<divclass="section"id="static-media">
<h2>Static Media<aclass="headerlink"href="#static-media"title="Permalink to this headline">¶</a></h2>
<p>django-admin-sortable includes a few CSS and JavaScript files. The preferred method of getting these files into your project is to use the <aclass="reference external"href="https://docs.djangoproject.com/en/1.6/ref/contrib/staticfiles/">staticfiles app</a>.</p>
<p>Alternatively, you can copy or symlink the <codeclass="docutils literal"><spanclass="pre">adminsortable</span></code> folder inside the <codeclass="docutils literal"><spanclass="pre">static</span></code> directory to the location you serve static files from.</p>