Metadata-Version: 1.1
Name: django-wpadmin
Version: 0.1.1
Summary: WordPress look and feel for Django administration panel.
Home-page: https://github.com/barszczmm/django-wpadmin
Author: Maciej Marczewski (barszcz)
Author-email: maciej@marczewski.net.pl
License: MIT License
Description: ===============
        Django WP Admin
        ===============
        
        ----------------------------------------------------------------------------------------------------------------------
        `WordPress <http://wordpress.org/>`_ look and feel for `Django <http://www.djangoproject.com/>`_ administration panel.
        ----------------------------------------------------------------------------------------------------------------------
        
        .. image:: https://raw.github.com/barszczmm/django-wpadmin/master/docs/images/django-wpadmin.png
        
        Features
        --------
        * Optional fixed (in CSS positioning terms) top menu with branding, user options (change password, logout, gravatar) and any other menu items
        * Optional fully configurable left menu with nice WordPress style
        * Left menu can be pinned (fixed CSS position) or unpinned and collapsed or expanded
        * Awesome `Font Awesome <http://fortawesome.github.com/Font-Awesome/>`_ icons supported in both menus
        * Multiple AdminSite's support with possibility to have different menus, colors and title for each one
        * Supports Django 1.3.x, 1.4.x, 1.5.x
        
        
        TODO
        ----
        * WordPress look and feel for tables, inputs, buttons
        * TinyMCE integration with WordPress theme
        * `django-filebrowser <https://github.com/sehmaschine/django-filebrowser>`_ integration
        * Bookmarks support
        
        
        Demo
        ----
        Try ``sample_project`` `here <http://django-wpadmin.dev.barszcz.info>`_ or download ``django-wpadmin`` and run it on your own machine. ``sample_project`` contains SQLite database file with prepopulated sample data.
        
        
        Installation
        ------------
        * Install django-wpadmin from PyPi::
        
            pip install django-wpadmin
        
        
        * Or from Github::
        
            pip install -e git+https://github.com/barszczmm/django-wpadmin.git#egg=django-wpadmin
        
        
        * Add to your ``INSTALLED_APPS`` before ``django.contrib.admin``::
        
            INSTALLED_APPS = (
                # Django WP Admin must be before django.contrib.admin
                'wpadmin',
                'wpadmin.menu',
                'wpadmin.dashboard',
            )
        
        
        * Copy one of the files from `django-wpadmin/wpadmin/menu/templates/admin/ <https://github.com/barszczmm/django-wpadmin/tree/master/wpadmin/menu/templates/admin>`_ (there's one file for each supported Django version) into your ``templates/admin/`` folder and rename copied file to ``base.html`` (you can also create symbolic link).
        * Add `django.core.context_processors.request <https://docs.djangoproject.com/en/dev/ref/templates/api/#django-core-context-processors-request>`_ to `TEMPLATE_CONTEXT_PROCESSORS <https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-TEMPLATE_CONTEXT_PROCESSORS>`_ setting.
        
        Basic configuration
        -------------------
        
        Add to ``settings.py``::
        
            WPADMIN = {
                'admin': {
                    'menu': {
                        'top': 'wpadmin.menu.menus.TopMenu',
                        'left': 'wpadmin.menu.menus.LeftMenu',
                    }
                },
            }
        
        
        Advanced configuration
        ----------------------
        Please take a look at the code in `sample_project <https://github.com/barszczmm/django-wpadmin/tree/master/sample_project>`_.
        
        This app takes a lot of ideas and a lot of code from `django-admin-tools <https://bitbucket.org/izi/django-admin-tools/wiki/Home>`_ app, so it is also good idea to read `django-admin-tools docs <http://django-admin-tools.readthedocs.org/en/latest/>`_.
        
        
        Credits
        -------
        Python code is heavily based on `django-admin-tools <https://bitbucket.org/izi/django-admin-tools/wiki/Home>`_ app.
        WordPress look and feel is of course inspired by `WordPress <http://wordpress.org/>`_.
        
        
        
Keywords: wordpress django admin
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Topic :: Software Development :: Libraries :: Python Modules
