No project description provided
Project description
Django Admin Detail View
Django Admin's missing DetailView.
Allows easy creation of a DetailView via DSL for an object in Django Admin.
Why this exists
Django Admin's is missing detail views (by design). It's strengths lie in administering specific objects via form modification.
But, a common need is to allow internal staff/admins to view specific objects and and their related objects. Historically the recommendation was to build a separate website/frontend for this.
Theory
With models Company, ContactInfo, SalesLeads, Orders, Internal staff want to quickly understand the status of a particular Company so a simple View displaying these 4 objects is very beneficial.
Then I can drill down into a Order and see all related Products, OrderStatusUpdates, SalesComments.
Via DSL, it is fast to stand up DetailViews for many objects.
Beliefs
Information dense, grid layout. Function over form.
Features
- Add View button to
changelistfor Object. detail_table_for()builds object's details table.table_for()builds a list ofctx["layout"]holds the grid structure.
Pre-reqs
- Bootstrap as Webpack
- webpack_loader
Install
- Direct add github to
pyproject.toml,git@github.com:jenfi-eng/djadmin-detail-view.git. - Add to
INSTALLED_APPS - Create a
DetailViewand add mixinAdminDetailMixin - To the object's admin add
AdminChangeListViewDetailand functionget_default_detail_view - Return the newly created DetailView in
get_default_detail_view.
See example_project/companies/admin.py for reference.
Code Example
from django.contrib import admin
from djadmin_detail_view.views import AdminChangeListViewDetail, AdminDetailMixin
from my_app.companies.models import Company
@admin.register(Company)
class CompanyAdmin(AdminChangeListViewDetail, admin.ModelAdmin):
def get_default_detail_view(self):
return CompanyDetailView
class CompanyDetailView(AdminDetailMixin, DetailView):
model = Company
def get_context_data(self, request, *args, **kwargs):
ctx = super().get_context_data(request, *args, **kwargs)
company_details = details_table_for(
panel_name="Company Details",
obj=self.object,
details=[
detail("id"),
detail("legal_name"),
detail("tax_id"),
detail("total_completed_order_amount", value=lambda x: x.total_order_value()),
]
)
orders_list = table_for(
panel_name="Orders",
obj_set=self.object.order_set.all(),
cols=[
col("id"),
col("legal_name"),
col("total_value"),
col("created"),
]
)
ctx["layout"] = [
{
"row": [
{"col": company_details},
{"col": None},
],
},
]
Current Open Source Status
This project is not ready for wider consumption. It is currently built for Jenfi and its internal needs. Thus, it has specific requirements such as django-hosts that may need to be abstracted away.
PRs are welcome to make it more generally accessible.
VSCode
Testing
Add config to allow specs to be run inside VSCode.
// .vscode/settings.json
{
"python.testing.pytestArgs": [
""
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
}
Web Launch Config
{
"name": "Django Web",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/server.py",
"args": [],
"django": true,
"justMyCode": false
},
TODO
- Add specs.
- Versioning and release on pypi.
- Allow non-webpack based installs.
Credit
This project takes a lot of inspiration from Rail's ActiveAdmin and its DSL.
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 djadmin_detail_view-0.2.4.tar.gz.
File metadata
- Download URL: djadmin_detail_view-0.2.4.tar.gz
- Upload date:
- Size: 12.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.13.5 Darwin/24.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdb528ccd9a1bd79e4743141d4ea88333f9a33074253be60f2e3a500fa64147d
|
|
| MD5 |
d1704cf528e1958850400e7fc24f3b32
|
|
| BLAKE2b-256 |
b5e4d235a0cf96ac16d9ba773855fc60a424d66a8d673dd7ffd8e03b26501413
|
File details
Details for the file djadmin_detail_view-0.2.4-py3-none-any.whl.
File metadata
- Download URL: djadmin_detail_view-0.2.4-py3-none-any.whl
- Upload date:
- Size: 14.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.13.5 Darwin/24.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b90e5edd77adb4361170d2340a62137fd903674915ee35446ae811094ec81af4
|
|
| MD5 |
468167c23a9f856301af3b21718c5388
|
|
| BLAKE2b-256 |
3a478e10b76f58287aaf4828d4652b16c07ae7443d033f88cb3cb9f79e889de0
|