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 !
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',
        # ...
    )