WIP: API: add icon_url #122

Closed
Anna Sirota wants to merge 5 commits from api-icon-and-featured-image-url into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
3 changed files with 12 additions and 6 deletions
Showing only changes of commit ae83ce7e38 - Show all commits

View File

@ -87,6 +87,10 @@
text-overflow: ellipsis
white-space: nowrap
&.ext-detail-info-tags
text-overflow: clip
white-space: wrap
dl,
dd:last-child
margin-bottom: 0

View File

@ -109,11 +109,11 @@
</div>
<div class="dl-row">
<dd>
<dd class="ext-detail-info-tags">
{% if version.tags.count %}
{% include "extensions/components/tags.html" with small=True version=version %}
{% include "extensions/components/tags.html" with small=True version=version %}
{% else %}
No tags.
No tags.
{% endif %}
</dd>
</div>

View File

@ -218,9 +218,11 @@
</div>
{% if latest.tags.count %}
<div class="dl-row">
<dd>{% include "extensions/components/tags.html" with small=True version=latest %}</dd>
</div>
<div class="dl-row">
<dd class="ext-detail-info-tags">
{% include "extensions/components/tags.html" with small=True version=latest %}
</dd>
</div>
{% endif %}
</dl>
</div>