forked from CGM_Public/pretix_original
Merge branch 'master' of github.com:pretix/pretix
This commit is contained in:
@@ -812,7 +812,7 @@ DEFAULTS = {
|
||||
'form_class': forms.IntegerField,
|
||||
'form_kwargs': dict(
|
||||
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 "
|
||||
"number of hours until it expires and can be re-assigned to the next person on the list."),
|
||||
widget=forms.NumberInput(),
|
||||
|
||||
@@ -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