We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc43338 commit 7c48e36Copy full SHA for 7c48e36
docs/release-notes/version-2.10.md
@@ -2,6 +2,10 @@
2
3
## v2.10.10 (FUTURE)
4
5
+### Enhancements
6
+
7
+* [#6157](https://github.com/netbox-community/netbox/issues/6157) - Support Markdown rendering for report logs
8
9
### Bug Fixes
10
11
* [#5419](https://github.com/netbox-community/netbox/issues/5419) - Update parent device/VM when deleting a primary IP
netbox/templates/extras/report_result.html
@@ -66,9 +66,11 @@
66
<a href="{{ url }}">{{ obj }}</a>
67
{% elif obj %}
68
{{ obj }}
69
+ {% else %}
70
+ <span class="muted">—</span>
71
{% endif %}
72
</td>
- <td>{{ message }}</td>
73
+ <td class="rendered-markdown">{{ message|render_markdown }}</td>
74
</tr>
75
{% endfor %}
76
0 commit comments