Fix sustainer form default
This commit is contained in:
parent
3fe83d1466
commit
1f83c2fb69
1 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@
|
||||||
x-data="{
|
x-data="{
|
||||||
tshirt_size: 'None',
|
tshirt_size: 'None',
|
||||||
tshirt_required: function () { return this.tshirt_size !== 'None' },
|
tshirt_required: function () { return this.tshirt_size !== 'None' },
|
||||||
recurring: 'once',
|
recurring: '',
|
||||||
}">
|
}">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
{{ form.errors }}
|
{{ form.errors }}
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
<p class="f7 black-60 mt1">To send your receipt</p>
|
<p class="f7 black-60 mt1">To send your receipt</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="mb2"><label>
|
<div class="mb2"><label>
|
||||||
<label class="mr1"><input type="radio" name="recurring" value="" x-model="recurring"> Once</label>
|
<label class="mr1"><input type="radio" name="recurring" value="" checked x-model="recurring"> Once</label>
|
||||||
<label class="mr1"><input type="radio" name="recurring" value="month" x-model="recurring"> Monthly</label>
|
<label class="mr1"><input type="radio" name="recurring" value="month" x-model="recurring"> Monthly</label>
|
||||||
<label><input type="radio" name="recurring" value="year" x-model="recurring"> Annual</label>
|
<label><input type="radio" name="recurring" value="year" x-model="recurring"> Annual</label>
|
||||||
</label></div>
|
</label></div>
|
||||||
|
|
Loading…
Reference in a new issue