-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Description
NetBox version
v2.11.3
Feature type
Change to existing functionality
Proposed functionality
I'd like to propose an enhancement on the look & feel of the report_list.html page.
Each report is currently presented in a List of 4 columns (Name | Status | Description | Last Run). I would propose to render the Description column using markdown support.
The change would be as simple as modifying the report_list.html template and add the class rendered-markdown and use the markdown django template function on the following line
| <td>{{ report.description|placeholder }}</td> |
The markdown support has already been implemented for each report log messages so it won't be difficult to use the same feature for the Report description (check this commit)
I can handle this issue and propose a Pull Request.
Use case
Adding markdown support to each Report description allows to structure the this description easily if we want to explain in more detail the whole test case covered.
Database changes
None
External dependencies
None