Nexus
Nexus is a pluggable admin application in Django. It’s designed to give you a simple design and architecture for building admin applications.
(This project is still under active development)
Screenshot
Install
Install it with pip (or easy_install):
pip install nexus
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:
(docs on writing modules coming soon)
Release files for nexus 0.3.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| nexus-0.3.1.tar.gz | 93.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| nexus-0.3.1-py2.py3-none-any.whl | Python 3, Python 2 | none | any | Details |
Total release size: 195.4 kB
Release files / nexus-0.3.1.tar.gz
| Download URL | nexus-0.3.1.tar.gz |
|---|---|
| Size | 93.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e46e44a59896d0d5a95749cfcae060f3cd1aa8db7ea43a0ea3c2fcf0d80fe503
|
|
BLAKE2b-256 checksum How to use checksums |
06c0262786ae7821c47d54749f32964fcc1187960cfd61bfe5580a1e27e7ed6f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / nexus-0.3.1-py2.py3-none-any.whl
| Download URL | nexus-0.3.1-py2.py3-none-any.whl |
|---|---|
| Size | 101.7 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
3b5896693591bd968f0b07dc66938be398faa04c26fc2c03dc33481f3c4419fa
|
|
BLAKE2b-256 checksum How to use checksums |
3d3ba55836616febfab1a10e5c6c480f8d1ca1bc00835f7f25f7159652bd0c23
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |