Navigation Menu

Skip to content

burhan/django-wpadmin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django WP Admin

WordPress look and feel for Django administration panel.

image

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 icons supported in both menus
  • Multiple AdminSite's support with possibility to have different menus, colors and title for each one
  • Supports Django 1.4.x and 1.5.x
  • WordPress look and feel for objects lists
  • WordPress look and feel for objects edit pages

TODO

  • Styles for history page
  • Styles for inlines
  • TinyMCE integration with WordPress theme
  • django-filebrowser integration
  • Bookmarks support
  • Documentation

Demo

Try sample_project here 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',
    )
  • Add django.core.context_processors.request to 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.

This app takes a lot of ideas and a lot of code from django-admin-tools app, so it is also good idea to read django-admin-tools docs.

Credits

Python code is heavily based on django-admin-tools app. WordPress look and feel is of course inspired by WordPress.

About

WordPress look and feel for Django administration panel

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published