Metadata-Version: 1.1
Name: django-sortable-column
Version: 0.1.1
Summary: A simple Django templatetag to renders a sortable column to support sorting in tables.
Home-page: https://github.com/weynelucas/django-sortable-column
Author: Lucas Weyne
Author-email: weynelucas@gmail.com
License: BSD License
Description: 
        =====
        Sortable Column
        =====
        
        Sortable Column is a simple Django templatetag to renders a sortable column to
        support sorting in tables.
        
        Detailed documentation on GitHub (https://github.com/weynelucas/django-sortable-column)
        
        Quick start
        -----------
        
        1. Add "sortable_column" to your INSTALLED_APPS setting like this:
        
            INSTALLED_APPS = [
                ...
                'sortable_column',
            ]
        
        2. Include the following snippet at the top of any template that makes use of
        the sortable column tags:
        
            {% load sortable_column %}
        
        3. Use sortable_column tag on your template to render th tags for support the sorting
        in tables:
        
            {% sortable_column request=request property="title" title="Title" %}
        
        4. Handle 'sort' and 'order' parameters generated by sortable_column tag in your view function
        for sorting your dataset.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
