Skip to content

Commit

Permalink
add License-Files and License-Expression metadata to release admin vi…
Browse files Browse the repository at this point in the history
…ew (pypi#17104)
  • Loading branch information
ewdurbin authored Nov 18, 2024
1 parent e31a9a1 commit 3a3e946
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions warehouse/admin/templates/admin/projects/release_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,20 @@ <h3>Metadata</h3>
<td>License</td>
<td><code>{{ release.license }}</code></td>
</tr>
<tr>
<td>License-Expression</td>
<td><code>{{ release.license_expression }}</code></td>
</tr>
<tr>
<td>License-Files</td>
<td>
{% if release.license_files is not none %}
{% for license_file in release.license_files %}
<code>{{ license_file }}</code><br>
{% endfor %}
{% endif %}
</td>
</tr>
<tr>
<td>Classifier</td>
<td>
Expand Down

0 comments on commit 3a3e946

Please sign in to comment.