Metadata-Version: 1.0
Name: django_resort
Version: 0.1.0
Summary: Implement sorting for ListView columns without changing your views.
Home-page: https://github.com/alixedi/django_resort
Author: Ali Zaidi
Author-email: alixedi@gmail.com
License: BSD
Description: =============================
        django_resort
        =============================
        
        .. image:: https://badge.fury.io/py/django_resort.png
            :target: http://badge.fury.io/py/django_resort
            
        .. image:: https://travis-ci.org/alixedi/django_resort.png?branch=master
                :target: https://travis-ci.org/alixedi/django_resort
        
        .. image:: https://pypip.in/d/django_resort/badge.png
                :target: https://crate.io/packages/django_resort?version=latest
        
        
        Implement sorting for ListView columns without changing your views.
        
        Installation
        ------------
        
        Get it from the cheeseshop: ::
        
        	pip install django_resort
        
        Usage
        -----
        
        Read on:
        
        1. Include `django_resort` in your `INSTALLED_APPS` settings.
        
        2. Load the tags: ::
        
        	{% load resort %}
        
        3. Jut before the for loop iterating through the object_list, include: ::
        
            {% auto_sort object_list %}
            {% for object in object_list %}
        
        4. In your table header: ::
        
        	<th>{% sort_link field.verbose_name|title field.name %}</th>
        
        Credits
        -------
        This project is primarily based upon `django-sorting <https://github.com/agiliq/django-sorting>`_ which it seems is no longer actively maintained as I could not get it to install using pip.
        
        
        
        History
        -------
        
        0.1.0 (2013-12-3)
        ++++++++++++++++++
        
        * First release on PyPI.
Keywords: django_resort
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
