diff --git a/bands/templates/bands/agreement-base.html b/bands/templates/bands/agreement-base.html new file mode 100644 index 0000000..e074359 --- /dev/null +++ b/bands/templates/bands/agreement-base.html @@ -0,0 +1,186 @@ +{% extends "bandbase.html" %} + +{% block body %} +{% block band_text_venue %} +

+ Band agreement for {{ band.group.name }} to perform at {{ c.EVENT_NAME_AND_YEAR }}! +

+

+ {{ c.EVENT_NAME_AND_YEAR }} will be held at {{ c.EVENT_VENUE }}: {{ c.EVENT_VENUE_ADDRESS }}, + from {{ c.EPOCH|datetime:"%B %d" }} - {{ c.ESCHATON|datetime:"%d, %Y" }}. +
+ Performers are encouraged to attend the full event and interact with staff, fellow performers, and attendees + in a relaxed environment. +
+ If performers will not be attending the full event, we ask that they inform us in advance so we may better + allocate sleeping arrangements. +

+{% endblock %} + +{% block band_text_performance %} +

+ Performance +

+

+ Performance time and date for {{ band.group.name }} to be determined, and will be provided prior to the event + as an update to this document. +
+ Performer will be provided with {{ band.estimated_loadin_minutes }} minutes, + of set up and line-check, followed by {{ band.performance_minutes }} minutes for performance. +
+ {% block band_text_timer %} + These time-frames will be enforced, via an on-stage timer, to ensure that performances occur in a timely fashion. + {% endblock band_text_timer %} +

+{% endblock %} + +{% block band_text_merch %} +

+ Merch +

+

+ {% block band_text_merch_inner %} + Space will be provided in our marketplace area for merchandise sales; either at a dedicated table or at our + Rock Island sales area, where {{ c.EVENT_NAME }} staff will sell performer-provided merchandise throughout the festival. + It is recommended, but not required, for performers to use our Rock Island service in this area, as merchandise can be sold + more consistently, and for many more hours. On the night of the performance, table space will also be provided immediately + outside the concert hall for merchandise sales and signings. + {% endblock band_text_merch_inner %} +

+{% endblock %} + +{% block band_text_payment %} +{% if band.payment %} +

+ Payment +

+

+ ${{ band.payment }} by check on site after the show. +

+ {% endif %} +{% endblock %} + +{% block band_text_accommodations %} +

+ Accommodations +

+

+ {% block band_text_accommodations_inner %} + One hotel room with 2 queen beds will be provided, + with check in and out times provided as part of our final agreement. + {% endblock %} +

+{% endblock %} + +{% block band_text_parking %} +

+ Parking +

+

+ {% block band_text_parking_inner %} + To be included with hotel room for {{ band.vehicles }} vehicle{{ band.vehicles|pluralize }}. + {% endblock %} +

+{% endblock %} + +{% block band_text_admission %} +

+ Admission +

+

+ {% block band_text_admission_inner %} + Each performer will receive one badge, and one additional complementary badge for a guest. + Additional complimentary badges may be issued upon request. + {% endblock %} +

+{% endblock %} + +{% block band_text_agreement_confirm %} +

+ Agreement +

+

+ By submitting your band's information below, you agree to the above terms. +

+{% endblock %} + +{% block band_information_form %} +

+ Your Information: +

+
+ + + {% csrf_token %} + +
+ +
+ +

+ To ensure that we have assigned the correct number of badges to your band, please confirm the number + of performers in your band. +

+
+
+ +
+ +
+ +

+ Please enter the cellphone number of your preferred Point of Contact for any issues we may need to + contact you about on-site. +

+
+
+ +
+ +
+ +

+ Please be as specific as possible about the day and time you plan on arriving at {{ c.EVENT_NAME }}. +

+
+
+ +
+ +
+ {% checkbox band_info.bringing_vehicle %} We will be parking at MAGFest. +
+
+ + + +
+
+ +
+
+
+ + + +{% endblock band_information_form %} + +{% endblock body %} diff --git a/bands/templates/bands/agreement.html b/bands/templates/bands/agreement.html index 8e2e1a3..8776190 100644 --- a/bands/templates/bands/agreement.html +++ b/bands/templates/bands/agreement.html @@ -1,128 +1,4 @@ -{% extends "bandbase.html" %} -{% block body %} +{% extends "bands/agreement-base.html" %} -

Band Agreement for {{ band.group.name }}

- -{{ c.EVENT_NAME_AND_YEAR }} will be held at the - - Gaylord National Hotel and Convention Center, 201 Waterfront St, National Harbor, MD 20745, - {{ c.EPOCH|datetime:"%B %d" }} - {{ c.ESCHATON|datetime:"%d, %Y" }}. - - - -

Performance:

- -Performance time and date for {{ band.group.name }} to be determined, and will be provided at a later time before our final -updated agreement is completed. - -

- -Performer will be provided with {{ band.performance_minutes }} minutes, to include line checks and performance, -with an additional {{ band.estimated_loadin_minutes }} minutes prior to performance for stage load-in and setup. - -

- -These time-frames will be enforced, via an on-stage timer, to ensure that performances occur in a timely fashion. - - -

Merch:

- -Space will be provided in our marketplace area for merchandise sales; either at a dedicated table or at our -Rock Island sales area, where {{ c.EVENT_NAME }} staff will sell performer-provided merchandise throughout the festival. -It is recommended, but not required, for performers to use our Rock Island service in this area, as merchandise can be sold -more consistently, and for many more hours. On the night of the performance, table space will also be provided immediately -outside the concert hall for merchandise sales and signings. - - -{% if band.payment %} -

Payment:

- ${{ band.payment }} by check on site after the show. -{% endif %} - - -

Hotel:

-One hotel room with 2 queen beds will be provided, with check in and out times provided as part of our final agreement. - - -

Parking:

-To be included with hotel room for {{ band.vehicles }} vehicle{{ band.vehicles|pluralize }}. - - -

Badges:

-Each performer will receive one badge, and one additional complementary badge for a guest. -Additional complimentary badges may be issued upon request. - - -

Your Information:

-
- - - {% csrf_token %} - -
- -
- -

- To ensure that we have assigned the correct number of badges to your band, please confirm the number - of performers in your band. -

-
-
- -
- -
- -

- Please enter the cellphone number of your preferred Point of Contact for any issues we may need to - contact you about on-site. -

-
-
- -
- -
- -

- Please be as specific as possible about the day and time you plan on arriving at {{ c.EVENT_NAME }}. -

-
-
- -
- -
- {% checkbox band_info.bringing_vehicle %} We will be parking at MAGFest. -
-
- - - -
-
- -
-
-
- - - -{% endblock %} +{# By default, this page renders exactly what's in the base template. #} +{# Downstream plugins may override this file and change base blocks, so leave this file in place. #}