Thursday, March 20, 2025
4 changes · master
Enhancements to existing features
Planning kanban cards now show assigned resources with avatar-style visuals instead of tag labels. This makes roles easier to scan at a glance and preserves helpful color cues for faster identification.
Original PR description
Call the avatar widget on role.resource_ids in kanban view. Get the field color. related: https://github.com/odoo/odoo/pull/153129 task-3516745
The Gantt view styling was adjusted so repeated CSS rules are generated only once instead of during every loop. This reduces unnecessary stylesheet output and helps keep the interface code lighter without changing how users interact with Gantt views.
Original PR description
This commit avoids to generate the same CSS rules for each iteration of the loop instead of setting them once, letting only the rules that actually depends on the loop to be generated during iteration.
The Knowledge app now uses a more standard way to display font-based icons. This small cleanup improves consistency with common web practices and helps reduce potential display or compatibility issues.
Original PR description
This commit replaces the non-standard HTML tag `<icon>` with the more common `<i>` tag used for font based icons.
Field service task menus now show the activity view before the pivot report view. This makes day-to-day task follow-up more immediately accessible while keeping reporting views available.
Original PR description
This commit moves the activity view before pivot view in tasks actions. task-4647282