Skip to content

Commit

Permalink
Uncomment provides-extra and adds dynamic to release_detail (#15537)
Browse files Browse the repository at this point in the history
* uncomment provides-extra and adds dynamic to release_detail

Signed-off-by: javanlacerda <[email protected]>

* fixing provides_extra

Signed-off-by: javanlacerda <[email protected]>

---------

Signed-off-by: javanlacerda <[email protected]>
  • Loading branch information
javanlacerda authored Mar 8, 2024
1 parent 23cd71b commit 223de96
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions warehouse/admin/templates/admin/projects/release_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -308,16 +308,22 @@ <h3>Metadata</h3>
{% endfor %}
</td>
</tr>
{#
<tr>
<td>Provides-Extra</td>
<td>
{% for extra in release.provides_extras %}
{% for extra in release.provides_extra %}
<code>{{ extra }}</code><br>
{% endfor %}
</td>
</tr>
#}
<tr>
<td>Dynamic</td>
<td>
{% for dynamic in release.dynamic %}
<code>{{ dynamic }}</code><br>
{% endfor %}
</td>
</tr>
</table>
</div>
</div>
Expand Down

0 comments on commit 223de96

Please sign in to comment.