public
Description: Some Django utilities I share between some of my sites (like Pagination, OOPViews ...)
Homepage: http://zerokspot.com/
Clone URL: git://github.com/zerok/django-zsutils.git
Click here to lend your support to: django-zsutils and make a donation at www.pledgie.com !
commit  cef2eb625556d89c9410337af9611a158a339e37
tree    cbec7c20a1f3eba3795bbc9d90be201937b64a2e
parent  b3e01c9a1d3bea6c866cbe3ff6f1e7850b80465c
django-zsutils / INSTALL.txt
100644 14 lines (9 sloc) 0.35 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
The simplest way to use this is by pulling it straight into your PYTHONPATH::
    
    cd /some/prefix/lib/python2.5/site-packages
    git clone git://github.com/zerok/django-zsutils.git django_zsutils
    
and then adding it to your project's installed apps::
    
    INSTALLED_APPS = (
        # ...
        'django_zsutils',
        # ...
    )