Skip to content

Commit 7c48e36

Browse files
committed
Closes #6157: Support Markdown rendering for report logs
1 parent cc43338 commit 7c48e36

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

docs/release-notes/version-2.10.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## v2.10.10 (FUTURE)
44

5+
### Enhancements
6+
7+
* [#6157](https://github.com/netbox-community/netbox/issues/6157) - Support Markdown rendering for report logs
8+
59
### Bug Fixes
610

711
* [#5419](https://github.com/netbox-community/netbox/issues/5419) - Update parent device/VM when deleting a primary IP

netbox/templates/extras/report_result.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,11 @@
6666
<a href="{{ url }}">{{ obj }}</a>
6767
{% elif obj %}
6868
{{ obj }}
69+
{% else %}
70+
<span class="muted">&mdash;</span>
6971
{% endif %}
7072
</td>
71-
<td>{{ message }}</td>
73+
<td class="rendered-markdown">{{ message|render_markdown }}</td>
7274
</tr>
7375
{% endfor %}
7476
{% endfor %}

0 commit comments

Comments
 (0)