Skip to main content

Nexus is a pluggable admin application in Django. It's designed to give you a simple design and architecture for building admin applications.

Project description

https://img.shields.io/pypi/v/nexus-yplan.svg https://travis-ci.org/YPlan/nexus.png?branch=master

Nexus is a pluggable admin application in Django. It’s designed to give you a simple design and architecture for building admin applications.

It was originally created by Disqus, but due to the inactivity we at YPlan have taken over maintenance on this fork.

Screenshot

http://dl.dropbox.com/u/116385/nexus.png

Requirements

Tested with all combinations of:

  • Python: 2.7

  • Django: 1.7, 1.8

Install

Install it with pip (or easy_install):

pip install nexus-yplan

Make sure you pip uninstall nexus first if you’re upgrading from the original to this fork - the packages clash.

Config

You’ll need to enable it much like you would django.contrib.admin.

First, add it to your INSTALLED_APPS setting:

INSTALLED_APPS = (
    ...
    'nexus',
)

Now you’ll want to include it within your urls.py:

import nexus

# sets up the default nexus site by detecting all nexus_modules.py files
nexus.autodiscover()

# urls.py
urlpatterns = patterns('',
    ('^nexus/', include(nexus.site.urls)),
)

By default Nexus requires django.contrib.auth and django.contrib.sessions. If you are using a custom auth system you can skip these requirements by using the setting NEXUS_SKIP_INSTALLED_APPS_REQUIREMENTS = True in your django settings.

Modules

Nexus by default includes a module that will automatically pick up django.contrib.admin.

Other applications which provide Nexus modules:

N.B. Those that have not been forked by YPlan probably aren’t up to date to work with newer Django versions.

If you want to write a module, look at the example_module folder for a hello world implementation. Also the source code shouldn’t be too hard to understand.

History

Pending Release

  • Removed support for old Django versions

  • Fixed all deprecation warnings on Django 1.7 and 1.8

1.0.0 (2015-12-09)

  • First publication on PyPI as nexus-yplan

  • Django 1.8 compatibility

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

nexus_yplan-1.0.0-py2.py3-none-any.whl (99.3 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page