Skip to content

Commit

Permalink
Make address US checkbox readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsuta committed Sep 28, 2023
1 parent 50bbec4 commit 1e8f5d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uber/templates/art_show_applications/art_show_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
{% if c.BY_MAIL_US_ONLY and (not readonly or app.delivery_method == c.BY_MAIL) %}
<div id="us_only_checkbox">
<label for="us_only" class="form-check-label">
<input type="checkbox" class="form-check-input" id="us_only" name="us_only" value="1" {% if app.us_only %}checked {% endif %}/>
<input type="checkbox" class="form-check-input" id="us_only" name="us_only" value="1" {% if app.us_only %}checked {% endif %}{% if readonly %}disabled {% endif %}/>
I verify that my mailing address will be in the continental US.
</label>
{% if not readonly %}
Expand Down

0 comments on commit 1e8f5d6

Please sign in to comment.