mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
* Fix #130: Mark required question fields at checkout * Add legend
This commit is contained in:
committed by
Raphael Michel
parent
9c2143effe
commit
f8ed21c819
@@ -19,6 +19,7 @@ from pretix.presale.signals import contact_form_fields, question_form_fields
|
||||
|
||||
|
||||
class ContactForm(forms.Form):
|
||||
required_css_class = 'required'
|
||||
email = forms.EmailField(label=_('E-mail'),
|
||||
help_text=_('Make sure to enter a valid email address. We will send you an order '
|
||||
'confirmation including a link that you need in case you want to make '
|
||||
@@ -48,6 +49,7 @@ class ContactForm(forms.Form):
|
||||
|
||||
|
||||
class InvoiceAddressForm(forms.ModelForm):
|
||||
required_css_class = 'required'
|
||||
|
||||
class Meta:
|
||||
model = InvoiceAddress
|
||||
@@ -61,6 +63,7 @@ class InvoiceAddressForm(forms.ModelForm):
|
||||
def __init__(self, *args, **kwargs):
|
||||
self.event = event = kwargs.pop('event')
|
||||
super().__init__(*args, **kwargs)
|
||||
self.fields['name'].form_group_class = 'required'
|
||||
if not event.settings.invoice_address_vatid:
|
||||
del self.fields['vat_id']
|
||||
if not event.settings.invoice_address_required:
|
||||
@@ -118,6 +121,7 @@ class QuestionsForm(forms.Form):
|
||||
the attendee name for admission tickets, if the corresponding setting is enabled,
|
||||
as well as additional questions defined by the organizer.
|
||||
"""
|
||||
required_css_class = 'required'
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
"""
|
||||
|
||||
@@ -5,6 +5,11 @@
|
||||
{% block content %}
|
||||
<h2>{% trans "Checkout" %}</h2>
|
||||
<p>{% trans "Before we continue, we need you to answer some questions." %}</p>
|
||||
<p class="required-legend">
|
||||
{% blocktrans trimmed %}
|
||||
You need to fill all fields that are marked with <span>*</span> to continue.
|
||||
{% endblocktrans %}
|
||||
</p>
|
||||
<form class="form-horizontal" method="post" enctype="multipart/form-data">
|
||||
{% csrf_token %}
|
||||
<div class="panel-group" id="questions_group">
|
||||
|
||||
@@ -33,3 +33,12 @@
|
||||
@include box-shadow($shadow);
|
||||
}
|
||||
}
|
||||
|
||||
.required-legend span {
|
||||
color: $brand-primary;
|
||||
font-weight: bold;
|
||||
}
|
||||
.form-group.required .control-label:after {
|
||||
content: '*';
|
||||
color: $brand-primary
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user