mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-18 21:15:41 +00:00
error retrieving tag
This commit is contained in:
@ -102,4 +102,32 @@
|
||||
</table>
|
||||
</div>
|
||||
|
||||
|
||||
<h4>{% trans "Plugin errors" %}</h4>
|
||||
<div class='table-responsive'>
|
||||
<table class='table table-striped table-condensed'>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{% trans "Stage" %}</th>
|
||||
<th>{% trans "Name" %}</th>
|
||||
<th>{% trans "Message" %}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
{% plugin_errors as pl_errors %}
|
||||
{% for stage, errors in pl_errors.items %}
|
||||
{% for error_detail in errors %}
|
||||
{% for name, message in error_detail.items %}
|
||||
<tr>
|
||||
<td>{{ stage }}</td>
|
||||
<td>{{ name }}</td>
|
||||
<td>{{ message }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
Reference in New Issue
Block a user