Skip to content

Commit

Permalink
Update detailed error message display
Browse files Browse the repository at this point in the history
  • Loading branch information
amickan committed Oct 23, 2024
1 parent ce8fff4 commit 165019a
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,13 @@ <h3>Result Reference Data</h3>

{% if object.detailed_error_message %}
<dt class="col-sm-3">Detailed Error Message</dt>
<dd class="col-sm-9"><pre>{{ object.detailed_error_message|json_dumps }}</pre></dd>
<dd class="col-sm-9">
<dl>
{% for interface, error in object.detailed_error_message.items %}
<dt>{{ interface }}</dt> <dd>{{ error }}</dd>
{% endfor %}
</dl>
</dd>
{% endif %}

{% if object.duration %}
Expand Down

0 comments on commit 165019a

Please sign in to comment.