Metadata-Version: 1.1
Name: django-south-admin
Version: 0.0.2
Summary: Django app/project skeleton.
Home-page: http://github.com/praekelt/django-south-admin
Author: Praekelt Foundation
Author-email: dev@praekelt.com
License: BSD
Description: Django South Admin
        ==================
        **Django app allowing for South management through Admin.**
        
        ``django-south-admin`` allows you trigger `South <http://south.aeracode.org/>`_ migrations and manage migration histories through Django's admin interface.
        
        ``django-south-admin`` utilizes `django-object-tools <http://pypi.python.org/pypi/django-object-tools>`_ to hook into Django's admin interface and take care of user permissions.
        
        .. contents:: Contents
            :depth: 5
        
        Installation
        ------------
        
        #. Install ``django-object-tools`` as described `here <http://pypi.python.org/pypi/django-object-tools#id3>`_.
        
        #. Install or add ``django-south-admin`` to your Python path.
        
        #. Add ``south_admin`` to your ``INSTALLED_APPS`` setting.
        
        Usage
        -----
        
        Once installed you should see a new *South* section on admin home. On the *Migration histories* listing view a new *Migrate* tool will be available allowing you to run South's ``migrate`` management command.
        
        .. image:: https://github.com/downloads/praekelt/django-south-admin/migrate_example.png
        
        If you don't see the tool make sure the logged in user has the appropriate *Can migrate migration historys* user permission assigned (or set user as superuser).
        
        Clicking the *Migrate* tool link will immediatly kick-off South's ``migrate`` management command and return its output.
        
        Authors
        =======
        
        Praekelt Foundation
        -------------------
        
        * Shaun Sephton
        
        Changelog
        =========
        
        0.0.2 (2012-07-10)
        ------------------
        
        #. Initial release.
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
