Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions dojo/templates/dojo/snippets/endpoints.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ <h6>Mitigated Endpoints / Systems ({{ finding.mitigated_endpoint_count }})</h6>
{% if V3_FEATURE_LOCATIONS %}
<td style="word-break: break-word">{{ endpoint.location }}{% if endpoint.is_broken %} <span data-toggle="tooltip" title="Endpoint is broken. Check documentation to look for fix process" >&#128681;</span>{% endif %}</td>
<td>{{ endpoint.status }}</td>
<td>{{ endpoint.auditor|safe }}</td>
<td>{{ endpoint.auditor }}</td>
<td>{{ endpoint.audit_time|date }}</td>
{% else %}
{% comment %} TODO: Delete this after the move to Locations {% endcomment %}
{% comment %} TODO: Delete this after the move to Locations {% endcomment %}
<td style="word-break: break-word">{{ endpoint }}{% if endpoint.endpoint.is_broken %} <span data-toggle="tooltip" title="Endpoint is broken. Check documentation to look for fix process" >&#128681;</span>{% endif %}</td>
<td>{{ endpoint.status }}</td>
<td>{{ endpoint.mitigated_by|safe }}</td>
<td>{{ endpoint.mitigated_by }}</td>
<td>{{ endpoint.mitigated_time|date }}</td>
{% endif %}
</tr>
Expand Down Expand Up @@ -256,7 +256,7 @@ <h4>Mitigated Endpoints / Systems ({{ finding.mitigated_endpoint_count }})
{% include "dojo/snippets/tags.html" with tags=endpoint.location.tags.all %}
</td>
<td>{{ endpoint.get_status_display }}</td>
<td>{{ endpoint.auditor|safe }}</td>
<td>{{ endpoint.auditor }}</td>
<td>{{ endpoint.audit_time|date }}</td>
{% else %}
{% comment %} TODO: Delete this after the move to Locations {% endcomment %}
Expand All @@ -265,7 +265,7 @@ <h4>Mitigated Endpoints / Systems ({{ finding.mitigated_endpoint_count }})
{% include "dojo/snippets/tags.html" with tags=endpoint.endpoint.tags.all %}
</td>
<td>{{ endpoint.status }}</td>
<td>{{ endpoint.mitigated_by|safe }}</td>
<td>{{ endpoint.mitigated_by }}</td>
<td>{{ endpoint.mitigated_time|date }}</td>
{% endif %}
</tr>
Expand Down
Loading