Add column labels, selectionless actions, Apple-like design refresh - #143
Merged
vsdudakov merged 1 commit intoJul 16, 2026
Merged
Conversation
- New ModelAdmin.list_display_labels attribute to override or translate list-page column titles; sorting/filtering stay keyed by field name. - @action(requires_selection=False) enables the Apply button without selected rows; the handler receives an empty ids list. - Apple-like UI: frosted-glass sticky header with hairline borders (primary_color becomes the accent instead of the header background), larger radii, softer shadows, #f5f5f7/#161617 layout backgrounds, transparent table headers; Quill accent follows primary_color. - Frontend deps: antd 6.5.1, i18next 26, react-i18next 17, vite 8, jsdom 29, TypeScript 6.0, vitest 4.1.10, eslint 10.7; quill-delta added for peer dep; baseUrl removed from tsconfig (deprecated in TS6). - Backend: uv.lock refreshed within declared ranges.
vsdudakov
deleted the
feat/column-labels-selectionless-actions-apple-design
branch
July 16, 2026 07:25
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Features
ModelAdmin.list_display_labelsattribute ({"field": "Header"}) to override or translate auto-generated list-page column titles. Data binding, sorting and filtering stay keyed by the field name.@action(requires_selection=False)enables the Apply button without selecting rows; the handler receives an emptyidslist and should treat it as "all objects". Default behavior is unchanged.Frontend
primary_colornow serves as the accent (buttons, links, menu selection) instead of the header background; larger corner radii, softer diffuse shadows,#f5f5f7/#161617layout backgrounds, tighter letter spacing, transparent table headers. The rich-text editor accent followsprimary_colorinstead of a hardcoded teal. Verified visually on thefastapi_sqlalchemyexample in light and dark modes.quill-deltato satisfy a peer dependency; removed deprecatedbaseUrlfromtsconfig.json(TypeScript is kept at 6.0 because typescript-eslint declares peer<6.1.0).Backend
uv.lockrefreshed within the declared dependency ranges (asgiref 3.12, django 6.0.7, yara-orm 1.14.4, …); no changes to the supported ranges inpyproject.toml.Docs & tests
list_display_labelsandrequires_selectiondocumented in the model-admins guide, API reference and settings guide; changelog updated.Checks
yarn build,mkdocs build --strict: clean