mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Merge v2.11.5
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
|
||||
{% block content %}
|
||||
{% if report.description %}
|
||||
<p class="text-muted">{{ report.description }}</p>
|
||||
<p class="text-muted">{{ report.description|render_markdown }}</p>
|
||||
{% endif %}
|
||||
{% if perms.extras.run_report %}
|
||||
<div class="float-end noprint">
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
{% if reports %}
|
||||
{% for module, module_reports in reports %}
|
||||
<div class="card">
|
||||
<h5 class="card-header"><a name="module.{{ module }}"></a>{{ module|bettertitle }}</h3>
|
||||
<h5 class="card-header"><a name="module.{{ module }}"></a>{{ module|bettertitle }}</h5>
|
||||
<div class="card-body">
|
||||
<table class="table table-hover table-headings reports">
|
||||
<thead>
|
||||
@@ -32,7 +32,7 @@
|
||||
<td>
|
||||
{% include 'extras/inc/job_label.html' with result=report.result %}
|
||||
</td>
|
||||
<td>{{ report.description|placeholder }}</td>
|
||||
<td>{{ report.description|render_markdown|placeholder }}</td>
|
||||
<td class="text-end">
|
||||
{% if report.result %}
|
||||
<a href="{% url 'extras:report_result' job_result_pk=report.result.pk %}">{{ report.result.created }}</a>
|
||||
|
||||
Reference in New Issue
Block a user