mirror of
https://github.com/pretix/pretix.git
synced 2026-05-08 15:44:02 +00:00
Exporters: Support "featured" flag on organizer level
This commit is contained in:
@@ -97,7 +97,13 @@
|
|||||||
<div class="list-group large-link-group">
|
<div class="list-group large-link-group">
|
||||||
{% for e in c_ex %}
|
{% for e in c_ex %}
|
||||||
<a class="list-group-item" href="?identifier={{ e.identifier }}">
|
<a class="list-group-item" href="?identifier={{ e.identifier }}">
|
||||||
<h4>{{ e.verbose_name }}</h4>
|
<h4>
|
||||||
|
{{ e.verbose_name }}
|
||||||
|
{% if e.featured %}
|
||||||
|
<span class="fa fa-star text-success" data-toggle="tooltip"
|
||||||
|
title="{% trans "Recommended for new users" %}" aria-hidden="true"></span>
|
||||||
|
{% endif %}
|
||||||
|
</h4>
|
||||||
{% if e.description %}
|
{% if e.description %}
|
||||||
<p>
|
<p>
|
||||||
{{ e.description }}
|
{{ e.description }}
|
||||||
|
|||||||
Reference in New Issue
Block a user