mirror of
https://github.com/pretix/pretix.git
synced 2026-05-09 15:54:03 +00:00
Merge branch 'master' of github.com:pretix/pretix
This commit is contained in:
@@ -812,7 +812,7 @@ DEFAULTS = {
|
|||||||
'form_class': forms.IntegerField,
|
'form_class': forms.IntegerField,
|
||||||
'form_kwargs': dict(
|
'form_kwargs': dict(
|
||||||
label=_("Waiting list response time"),
|
label=_("Waiting list response time"),
|
||||||
min_value=6,
|
min_value=1,
|
||||||
help_text=_("If a ticket voucher is sent to a person on the waiting list, it has to be redeemed within this "
|
help_text=_("If a ticket voucher is sent to a person on the waiting list, it has to be redeemed within this "
|
||||||
"number of hours until it expires and can be re-assigned to the next person on the list."),
|
"number of hours until it expires and can be re-assigned to the next person on the list."),
|
||||||
widget=forms.NumberInput(),
|
widget=forms.NumberInput(),
|
||||||
|
|||||||
@@ -26,6 +26,10 @@
|
|||||||
<p>
|
<p>
|
||||||
<span class="fa fa-calendar"></span>
|
<span class="fa fa-calendar"></span>
|
||||||
{{ form.cartpos.subevent.name }} · {{ form.cartpos.subevent.get_date_range_display }}
|
{{ 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>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% for c in form.categories %}
|
{% for c in form.categories %}
|
||||||
|
|||||||
@@ -93,7 +93,11 @@
|
|||||||
</label>
|
</label>
|
||||||
<div class="col-md-9 form-control-text">
|
<div class="col-md-9 form-control-text">
|
||||||
<ul class="addon-list">
|
<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>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user