Skip to content

Commit

Permalink
Refine the Import tab table input column #138
Browse files Browse the repository at this point in the history
Signed-off-by: tdruez <[email protected]>
  • Loading branch information
tdruez committed Jul 17, 2024
1 parent 6b22815 commit a684f70
Showing 1 changed file with 11 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<tr>
<th>{% trans 'Import type' %}</th>
<th style="width:115px;">{% trans 'Status' %}</th>
<th>{% trans 'Input file' %}</th>
<th>{% trans 'Input' %}</th>
<th colspan="2">{% trans 'Log' %}</th>
</tr>
</thead>
Expand Down Expand Up @@ -54,8 +54,16 @@
{% endif %}
{% include 'component_catalog/includes/scan_status.html' with status=scancode_project.status has_errors=scancode_project.has_errors only %}
</td>
<td>{{ scancode_project.input_file_filename|default_if_none:"" }}</td>
<td colspan="2">{{ scancode_project.import_log|join:"<br>" }}</td>
<td>
{% if scancode_project.input_file %}
File: {{ scancode_project.input_file_filename }}
{% elif scancode_project.project_uuid %}
Project: {{ scancode_project.project_uuid }}
{% endif %}
</td>
<td colspan="2">
{{ scancode_project.import_log|join:"<br>" }}
</td>
</tr>
{% endfor %}
</tbody>
Expand Down

0 comments on commit a684f70

Please sign in to comment.