Changeset - 1f83c2fb6966
[Not reviewed]
0 1 0
Ben Sturmfels (bsturmfels) - 10 days ago 2024-10-08 12:34:10
ben@sturm.com.au
Fix sustainer form default
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
conservancy/supporters/templates/supporters/sustainers_stripe2.html
Show inline comments
...
 
@@ -21,9 +21,9 @@
 
    <form id="sustainer" method="post" action="."
 
          x-data="{
 
                    tshirt_size: 'None',
 
                    tshirt_required: function () { return this.tshirt_size !== 'None' },
 
                    recurring: 'once',
 
                    recurring: '',
 
                  }">
 
      {% csrf_token %}
 
      {{ form.errors }}
 
      <div class="mb2"><label>Name
...
 
@@ -34,9 +34,9 @@
 
      </label>
 
      <p class="f7 black-60 mt1">To send your receipt</p>
 
      </div>
 
      <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><input type="radio" name="recurring" value="year" x-model="recurring"> Annual</label>
 
      </label></div>
 
      <div class="mb2" x-show="recurring === ''"><label>Amount
0 comments (0 inline, 0 general)