-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
You couldn't save anyone as an admin due to these fields being missing. Whoops.
- Loading branch information
Showing
5 changed files
with
39 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{% extends 'uber/templates/forms/attendee/admin_badge_extras.html' %} | ||
|
||
{% block add_ons %} | ||
{{ form_macros.toggle_fields_js(badge_extras.camping_type, [badge_extras.cabin_type], on_values=["267506057"], toggle_required=True, | ||
closest_hide_selector='.form-floating') }} | ||
<div class="row g-sm-3"> | ||
<div class="col-12 col-sm-6">{{ form_macros.form_input(badge_extras.camping_type) }}</div> | ||
<div class="col-12 col-sm-6">{{ form_macros.form_input(badge_extras.cabin_type) }}</div> | ||
</div> | ||
|
||
{{ super() }} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{% extends 'uber/templates/forms/attendee/admin_consents.html' %} | ||
|
||
{% block required %} | ||
{{ super() }} | ||
{{ consents.acknowledged_checkin_policy }} | ||
{{ consents.waiver_consent }} | ||
|
||
<div class="row g-sm-3"> | ||
<div class="col-12 col-sm-6">{{ form_macros.form_input(consents.waiver_signature, readonly=True) }}</div> | ||
<div class="col-12 col-sm-6">{{ form_macros.form_input(consents.waiver_date, readonly=True) }}</div> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters