forked from CGM_Public/pretix_original
Display subevent time for each item in addon and question step
This commit is contained in:
@@ -26,6 +26,10 @@
|
||||
<p>
|
||||
<span class="fa fa-calendar"></span>
|
||||
{{ form.cartpos.subevent.name }} · {{ form.cartpos.subevent.get_date_range_display }}
|
||||
{% if form.cartpos.event.settings.show_times %}
|
||||
<span class="fa fa-clock-o"></span>
|
||||
{{ form.cartpos.subevent.date_from|date:"TIME_FORMAT" }}
|
||||
{% endif %}
|
||||
</p>
|
||||
{% endif %}
|
||||
{% for c in form.categories %}
|
||||
|
||||
@@ -93,7 +93,11 @@
|
||||
</label>
|
||||
<div class="col-md-9 form-control-text">
|
||||
<ul class="addon-list">
|
||||
{{ pos.subevent.name }} · {{ pos.subevent.get_date_range_display }}
|
||||
{{ pos.subevent.name }} · {{ pos.subevent.get_date_range_display }}
|
||||
{% if pos.event.settings.show_times %}
|
||||
<span class="fa fa-clock-o"></span>
|
||||
{{ pos.subevent.date_from|date:"TIME_FORMAT" }}
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user