contentdb/app/templates/macros/packagegridtile.html

54 lines
1.6 KiB
HTML
Raw Normal View History

2018-05-29 23:58:46 +02:00
{% macro render_pkgtile(package, show_author) -%}
2021-07-24 05:30:14 +02:00
<li class="packagetile flex-fill"><a href="{{ package.getURL("packages.view") }}"
2021-01-29 21:21:17 +01:00
style="background-image: url({{ package.getThumbnailOrPlaceholder(2) }});">
2018-05-18 02:32:34 +02:00
<div class="packagegridscrub"></div>
<div class="packagegridinfo">
2018-05-29 23:58:46 +02:00
<h3>
{{ package.title }}
2018-12-23 17:28:15 +01:00
{% if show_author %}<br />
<small>{{ package.author.display_name }}</small>
2018-05-29 23:58:46 +02:00
{% endif %}
{% if not package.approved %}
<span class="badge ml-1 {% if package.state == package.state.CHANGES_NEEDED %}bg-danger{% else %}bg-warning{% endif %}">
{{ package.state.value }}
</span>
{% endif %}
2018-05-29 23:58:46 +02:00
</h3>
2018-05-18 02:32:34 +02:00
<p>
2019-01-29 04:00:01 +01:00
{{ package.short_desc }}
2018-05-18 02:32:34 +02:00
</p>
2018-05-29 22:24:50 +02:00
{% if not package.license.is_foss and not package.media_license.is_foss %}
2018-05-29 22:24:50 +02:00
<p style="color:#f33;">
2022-01-08 00:27:00 +01:00
{{ _("<b>Warning:</b> Non-free code and media.") }}
2018-05-29 22:24:50 +02:00
</p>
{% elif not package.license.is_foss %}
2018-05-29 22:24:50 +02:00
<p style="color:#f33;">
2022-01-08 00:27:00 +01:00
{{ _("<b>Warning:</b> Non-free code.") }}
2018-05-29 22:24:50 +02:00
</p>
{% elif not package.media_license.is_foss %}
<p style="color:#f33;">
2022-01-08 00:27:00 +01:00
{{ _("<b>Warning:</b> Non-free media.") }}
2018-05-29 22:24:50 +02:00
</p>
{% endif %}
2018-05-18 02:32:34 +02:00
</div>
</a></li>
{% endmacro %}
2018-05-29 23:58:46 +02:00
{% macro render_pkggrid(packages, show_author=True) -%}
2018-12-22 21:39:34 +01:00
<ul class="d-flex p-0 flex-row flex-wrap justify-content-start align-content-start ">
2018-05-18 02:32:34 +02:00
{% for p in packages %}
2018-05-29 23:58:46 +02:00
{{ render_pkgtile(p, show_author) }}
2018-05-18 02:32:34 +02:00
{% else %}
2022-01-08 00:27:00 +01:00
<li class="packagetile flex-fill"><i>{{ _("No packages available") }}</i></li>
2018-05-18 02:32:34 +02:00
{% endfor %}
2020-01-19 16:46:29 +01:00
{% if packages %}
{% for i in range(4) %}
<li class="packagetile flex-fill"></li>
{% endfor %}
{% endif %}
2018-05-18 02:32:34 +02:00
</ul>
{% endmacro %}