mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 09:51:22 -06:00
Closes #6157: Support Markdown rendering for report logs
This commit is contained in:
parent
cc433388f5
commit
7c48e3632d
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
## v2.10.10 (FUTURE)
|
## v2.10.10 (FUTURE)
|
||||||
|
|
||||||
|
### Enhancements
|
||||||
|
|
||||||
|
* [#6157](https://github.com/netbox-community/netbox/issues/6157) - Support Markdown rendering for report logs
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
* [#5419](https://github.com/netbox-community/netbox/issues/5419) - Update parent device/VM when deleting a primary IP
|
* [#5419](https://github.com/netbox-community/netbox/issues/5419) - Update parent device/VM when deleting a primary IP
|
||||||
|
@ -66,9 +66,11 @@
|
|||||||
<a href="{{ url }}">{{ obj }}</a>
|
<a href="{{ url }}">{{ obj }}</a>
|
||||||
{% elif obj %}
|
{% elif obj %}
|
||||||
{{ obj }}
|
{{ obj }}
|
||||||
|
{% else %}
|
||||||
|
<span class="muted">—</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
<td>{{ message }}</td>
|
<td class="rendered-markdown">{{ message|render_markdown }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Loading…
Reference in New Issue
Block a user