From 0da98a7de85f84493cadc8460c1e27856eb908c4 Mon Sep 17 00:00:00 2001 From: Dominic Cerquetti Date: Mon, 16 May 2016 21:19:19 -0400 Subject: [PATCH 1/2] convert band agreement into blocks (WIP) - turn parts of the band agreement into blocks for extending via plugins - requires venue INI settings PR --- magstock/templates/bands/agreement.html | 156 ++---------------------- 1 file changed, 9 insertions(+), 147 deletions(-) diff --git a/magstock/templates/bands/agreement.html b/magstock/templates/bands/agreement.html index be31523..7446b9d 100644 --- a/magstock/templates/bands/agreement.html +++ b/magstock/templates/bands/agreement.html @@ -1,148 +1,10 @@ -{% extends "bandbase.html" %} -{% block body %} -​ -

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

-

- {{ c.EVENT_NAME_AND_YEAR }} will be held at Small Country Campground: 4400 Byrd Mill Rd., Louisa, VA 23093, 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. -

-​ -

- 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. -
- Though MAGStock is a laid back event, these time-frames will be enforced, via an on-stage timer, to ensure that performances occur in a timely fashion. -

-​ -

- Merch -

-

- Tables will be available in our concert tent throughout the weekend for performers' use. -

-​ -{% if band.payment %} -

- Payment -

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

- Accommodations -

-

- {{ band_info.performer_count|default:band.estimated_performer_count }} air-conditioned cabin space{{ band_info.performer_count|default:band.estimated_performer_count|pluralize }} with instrument storage will be provided (arriving {{ c.EPOCH|datetime:"%A, %B %d" }}, departing {{ c.ESCHATON|datetime:"%A, %B %d" }}), for each performer. -
- Cabin space is limited, so cabins may be shared between performers. -
- Alternately, performers may choose to camp in a tent, if they desire. Air-conditioned instrument storage will still be provided. -
- Additional space, and camping equipment will be the responsibility of the performer. -

-​ -​ -

- Parking -

-

- Available outside performer cabins, or in the campground parking lot. -

-​ -​ -

- Admission -

-

- Each performer will receive one admission wristband, good for the duration of the event, and one additional complimentary wristband for a guest. -
- Additional complimentary wristbands may be issued on 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. -
-
-​ - -​ -
-
- -
-
-
-​ - -​ +{% extends "bands/agreement-base.html" %} + +{% block band_text_merch_inner %} +Tables will be available in our concert tent throughout the weekend for performers' use. +{% endblock %} + +{% block band_text_timer %} +Though {{ c.EVENT_NAME }} is a laid back event, these time-frames will be enforced, via an on-stage timer, +to ensure that performances occur in a timely fashion. {% endblock %} From 6c685b15675cf4ad300e8f34e601399532d59b4c Mon Sep 17 00:00:00 2001 From: Dominic Cerquetti Date: Tue, 17 May 2016 09:05:36 -0400 Subject: [PATCH 2/2] finalize text for magstock performer agreement overrides --- magstock/templates/bands/agreement.html | 30 +++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/magstock/templates/bands/agreement.html b/magstock/templates/bands/agreement.html index 7446b9d..499c7d8 100644 --- a/magstock/templates/bands/agreement.html +++ b/magstock/templates/bands/agreement.html @@ -8,3 +8,33 @@ Though {{ c.EVENT_NAME }} is a laid back event, these time-frames will be enforced, via an on-stage timer, to ensure that performances occur in a timely fashion. {% endblock %} + +{% block band_text_accommodations_inner %} +{{ band_info.performer_count|default:band.estimated_performer_count }} +air-conditioned cabin space{{ band_info.performer_count|default:band.estimated_performer_count|pluralize }} +with instrument storage will be provided +(arriving {{ c.EPOCH|datetime:"%A, %B %d" }}, departing {{ c.ESCHATON|datetime:"%A, %B %d" }}), +for each performer. +
+Cabin space is limited, so cabins may be shared between performers. +
+Alternately, performers may choose to camp in a tent, if they desire. +Air-conditioned instrument storage will still be provided. +
+Additional space, and camping equipment will be the responsibility of the performer. +
+Performers must be free and clear of performer cabins by noon Sunday. +
+This is a requirement of the campground and non-negotiable. +{% endblock %} + +{% block band_text_parking_inner %} +Available outside performer cabins, or in the campground parking lot. +{% endblock %} + +{% block band_text_admission_inner %} +Each performer will receive one admission wristband, good for the duration of the event, +and one additional complimentary wristband for a guest. +
+Additional complimentary wristbands may be issued on request. +{% endblock %}