Neapolitan with namespaces - Django CRUD views
This project has been archived.
The maintainers of this project have marked this project as archived. No new releases are expected.
Project description
Django Nominopolitan
📢 IMPORTANT: This project has been renamed to
django-powercrud.All future development will happen on the new repository. Please update your dependencies:
pip uninstall django-nominopolitan pip install django-powercrudFor full documentation refer to
django-powercrud: Getting Started
An opinionated extension for neapolitan that adds the advanced CRUD features you usually have to build yourself.
This README is kept for reference only. See django-powercrud for current documentation.
What is Nominopolitan?
The neapolitan package gives you a solid foundation for Django CRUD views. But you still need to add filtering, bulk operations, modern UX features, and styling yourself.
Nominopolitan comes with these features built-in, specifically for user-facing CRUD interfaces. Use what you need, customize what you want.
⚠️ WARNING: This is a very early alpha release with limited tests and documentation. Expect breaking changes. You might prefer to fork or copy what you need.
See the full documentation.
Key Features
🎯 Advanced CRUD Operations - Filtering, bulk edit/delete, and pagination out of the box
⚡ Modern Web UX - HTMX integration, modals, and reactive updates
🎨 Multiple CSS Frameworks - daisyUI/Tailwind (default) and Bootstrap 5 support
🔧 Developer Friendly - Convention over configuration with full customization options
Quick Example
Start with basic neapolitan:
# Basic neapolitan
class ProjectView(CRUDView):
model = Project
Add Nominopolitan for advanced features:
# With Nominopolitan
class ProjectView(NominopolitanMixin, CRUDView):
model = Project
fields = ["name", "owner", "status"]
base_template_path = "core/base.html"
# Modern features
use_htmx = True
use_modal = True
# Advanced filtering
filterset_fields = ["owner", "status", "created_date"]
# Bulk operations
bulk_fields = ["status", "owner"]
bulk_delete = True
# Enhanced display
properties = ["is_overdue", "days_remaining"]
Getting Started
- Installation - Install and configure in minutes
- Quick Start - Your first Nominopolitan view
- Configuration - Explore the features
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_nominopolitan-0.2.29.tar.gz.
File metadata
- Download URL: django_nominopolitan-0.2.29.tar.gz
- Upload date:
- Size: 141.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.4 CPython/3.12.11 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fcb2c5e4a9811f5d6a0ffcaa32c51bcaa2426bbc3683253c5f1511c552b09c23
|
|
| MD5 |
6dc707fab30a1c81b10ef931868cea60
|
|
| BLAKE2b-256 |
1157226ec1ce44d92cdbc8da19e27cf4377cf0e9956d9b1e0854bc5b14eebd47
|
File details
Details for the file django_nominopolitan-0.2.29-py3-none-any.whl.
File metadata
- Download URL: django_nominopolitan-0.2.29-py3-none-any.whl
- Upload date:
- Size: 163.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.4 CPython/3.12.11 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c955d18e1236eca59bcb6320a670b8c2f230dd7e1c26f501d37f365f0c96b79
|
|
| MD5 |
112caf8c6ac9b3b3274302005533f7f0
|
|
| BLAKE2b-256 |
bb055d7ef8c6d9dc0d119ec8a7e7e5fd4d2b27c594007fb4727ced67eb911dd2
|