Two half-sheet printouts of the order of service. Print the page, cut it in half. That's it!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 | <!-- QUICK CUSTOMIZATION: PLAN NOTE OPTIONS {% assign print_plan_notes = false %} TO ONLY PRINT SPECIFIC PLAN NOTE CATEGORIES SET THIS TO false {% assign all_plan_notes = true %} SET INDIVIDUAL CATEGORY NAMES OF PLAN NOTES TO PRINT (and set above to false) {% array my_plan_notes = "General", "Band" %} PLAN ITEM OPTIONS {% assign print_plan_items = true %} {% assign print_plan_item_times = false %} {% assign print_plan_item_length = true %} {% assign print_song_key = false %} {% assign print_arrangement_name = false %} {% assign print_song_bpm = false %} {% assign print_song_sequence = false %} {% assign print_item_details = false %} TO ONLY PRINT SPECIFIC ITEM NOTE CATEGORIES SET THIS TO false {% assign all_item_notes = false %} CATEGORY NAMES OF ITEM NOTES TO PRINT {% array my_notes = "Person" %} TO PRINT ITEM NOTES IN COLUMNS SET TO TRUE {% assign notes_in_columns = true %} PLAN PEOPLE OPTIONS {% assign print_plan_people = true %} TO ONLY PRINT SPECIFIC PEOPLE CATEGORIES SET THIS TO false {% assign all_categories = true %} SET INDIVIDUAL CATEGORY NAMES OF PEOPLE TO PRINT (and set above to false) {% array my_categories = "Vocals", "Band", "Audio/Visual" %} TIME OPTIONS TO ONLY PRINT SPECIFIC TIMES SET THIS TO false {% assign print_times = false %} SERVICE TIMES {% assign print_service_times = false %} REHEARSAL TIMES {% assign print_rehearsal_times = true %} OTHER TIMES {% assign print_other_times = false %} OTHER OPTIONS {% assign force_page_break = false %} LYRICS OPTIONS {% assign print_lyrics = false %} {% assign number_of_columns = 1 %} {% assign space_between_columns = "0px" %} {% assign print_ccli_number = true %} {% assign print_author = true %} {% assign print_copyright = true %} INTERNAL CODE {% if all_item_notes == true %} {% assign selected_item_notes = plan.ministry.plan_item_note_categories %} {% else %} {% assign selected_item_notes = my_notes %} {% endif %} --> <html> <head> <title>{{ plan.ministry.name }}:: {{ plan.dates }}</title> <style> * { font-family: Verdana, Arial; font-size: 10pt; } body { padding:0; margin:0; } table#notes { width: 100%; padding-top: 10px; padding-bottom: 10px; } table#notes td { vertical-align: top; } table#plan { width: 100%; border-top: solid 3px black; border-bottom: solid 3px black; padding: 0; border-collapse: collapse;} table#plan thead { display: table-header-group; } table#plan tr { page-break-inside: avoid; } table#plan th { vertical-align: bottom; border-bottom: solid 2px black; border-top: solid 2px black; } table#plan td { border-bottom: solid 1px #999999; padding: 2px; vertical-align: top; } table#plan .time { width: 70px; text-align: center; } table#plan .length { width: 55px; text-align: center; font-weight: bold; } table#plan .notes { text-align: left; } table#plan .header { height: 20px; background-color: #666; color: white; font-weight: bold; padding-left: 5px; } table#plan .item { padding-top: 6px; padding-bottom: 6px; } table#plan .item_title { font-weight: bold; } table#plan .song { font-style: italic; } table#plan .arrangement { font-size: 9pt; } table#plan .key { font-size: 9pt; } table#plan .bpm { font-size: 9pt; } table#plan .sequence { font-size: 9pt; } table#plan .description { font-size: 8pt; white-space: pre-wrap; } table#plan .odd { background-color: #DDD; } table#header { width: 100%; border: none; padding: 0; border-collapse: collapse;} table#header td { padding: 2px; vertical-align: top; } H1 { text-align: center; padding: 0; margin: 0; font-size: 28pt; } H2 { text-align: center; padding: 0; margin: 0; font-size: 18pt; } H3 { text-align: center; padding: 0; margin: 0; font-size: 12pt; font-style: italic; } H4 { text-align: center; padding: 0; margin: 0; font-size: 10pt } PRE { margin: 0; padding: 0; white-space: pre-wrap; } .ministry_title { font-size: 18pt; font-weight: bold; text-align: center; border-bottom: solid 1px black;} .plan_dates { text-align: center; font-weight: bold; font-size: 12pt; } .series_title { text-align: right; } .times_section { padding: 10px; width: 200px; border-right: dotted 2px black; vertical-align: top; } .time_heading { clear: both; border-bottom: solid 1px lightgrey; padding-top: 10px; font-weight: bold; font-size: 12pt; } .time { padding-top: 10px; } .people_section { padding: 10px; vertical-align: top; } .people_category { clear: both; border-bottom: solid 1px lightgrey; padding-top: 10px; font-weight: bold; font-size: 12pt; } .position { width: 170px; display: inline-block; vertical-align: top; margin-bottom: 5px; font-size: 9pt; /* For IE 7 */ zoom: 1; *display: inline; } .person { font-size: 9pt; font-weight: bold; } .icon-question{ display: inline-block; color: #fff; text-align: center; font-size: 1em; background: #666; border-radius: 50%; width: 1em; height: 1em; line-height: 1em; padding: .1em; } .lyrics { font-style: normal; margin-top: 10px; } .chord_chart_content { margin-top: 10px; -moz-column-count: {{ number_of_columns }}; -moz-column-gap: {{ space_between_columns }}; -webkit-column-count: {{ number_of_columns }}; -webkit-column-gap: {{ space_between_columns }}; column-count: {{ number_of_columns }}; column-gap: {{ space_between_columns }}; column-fill: auto; } .column_break {column-break-after: always;} </style> </head> <body> <table width="100%"> <tr> {% for i in (1..2) %} <td width="50%" class="holder" style="padding: 20px;"> <!-- HEADER TITLES TABLE --> <table width="100%"> <tr> <td colspan=3 class="ministry_title">{{ plan.ministry.name }}</td> </tr> <tr> <td class="plan_title" width="30%">{{ plan.plan_title }}</td> <td class="plan_dates" width="40%">{{ plan.dates }}</td> <td class="series_title" width="30%">{{ plan.series_title }}</td> </tr> </table> <!-- END HEADER TITLES TABLE --> <!-- PLAN NOTES --> {% if print_plan_notes == true %} <table id="notes"> {% if all_plan_notes == true %} {% for note in plan.notes %} <tr> <td width="25%"><strong>{{ note.category_name }}:</strong></td> <td> {{ note.note }}</td> </tr> {% endfor %} {% else %} {% for my_note in my_plan_notes %} {% for note in plan.notes %} {% if my_note == note.category_name %} <tr> <td width="25%"><strong>{{ note.category_name }}:</strong></td> <td> {{ note.note }}</td> </tr> {% endif %} {% endfor %} {% endfor %} {% endif %} </table> {% endif %} <!-- END PLAN NOTES --> <!-- PLAN TABLE --> {% if print_plan_items == true %} <table id="plan"> {% if print_plan_item_times == true or print_plan_item_length == true or notes_in_columns == true %} <thead> <tr> {% if print_plan_item_times == true %} {% for time in plan.plan_times %} <th class="time">{{ time.starts_at | date: '%m/%d<br/>%I:%M%p' | downcase }}</th> {% endfor %} {% endif %} {% if print_plan_item_length == true %} <th class="length">Length</th> {% endif %} <th></th> {% if notes_in_columns == true %} {% for selected_item_note in selected_item_notes %} <th class="notes"> {% if all_item_notes == true %} {{ selected_item_note.name }} {% else %} {{ selected_item_note }} {% endif %} </th> {% endfor %} {% else %} <th class="notes">Notes</th> {% endif %} </tr> </thead> {% endif %} <tbody> {% for item in plan.items %} {% case item.item_type %} {% when 'Header' %} <tr style="page-break-after: avoid"> <td colspan="{% if print_plan_item_times == true and print_plan_item_length == true %}{{ plan.plan_times | size | add: 2 }}{% endif %} {% if print_plan_item_times == true and print_plan_item_length != true %}{{ plan.plan_times | size | add: 1 }}{% endif %} {% if print_plan_item_times != true and print_plan_item_length == true %}2{% endif %} {% if print_plan_item_times != true and print_plan_item_length != true %}1{% endif %}" class="header"> {{ item.title }} </td> {% if notes_in_columns == true %} {% for selected_item_note in selected_item_notes %} <td class="header"></td> {% endfor %} {% else %} <td class="header"></td> {% endif %} {% else %} <tr class="item {% cycle 'odd', 'even'%}"> {% if print_plan_item_times == true %} {% for time in plan.plan_times %} <td class="time item"> {% for item_time in item.times %}{% if item_time.time_id == time.id %}{{ item_time.actual_time | date: '%I:%M%p' | downcase }} {% endif %}{% endfor %} </td> {% endfor %} {% endif %} {% if print_plan_item_length == true %} <td class="length item">{{ item.length }}</td> {% endif %} <td class="item {% if item.song %}song{% endif %}"> <span class="item_title">{{ item.title }}</span> {% if item.arrangement %} {% if print_arrangement_name == true %} <span class="arrangement">{{ item.arrangement.name }}</span> {% endif %} {% if item.arrangement.music_key != "" and print_song_key == true %} <span class="key">in [{{ item.arrangement.music_key }}]</span> {% endif %} {% if item.arrangement.bpm != "" and print_song_bpm == true %} <span class="bpm">at {{ item.arrangement.bpm }} bpm</span> {% endif %} {% if item.item_sequence and print_song_sequence == true %} <span class="sequence"> - {{ item.item_sequence }}</span> {% endif %} {% endif %} <pre class="description">{{ item.description }}</pre> {%if print_item_details %}<pre class="description">{{ item.details }}</pre>{% endif %} {% if print_lyrics and item.arrangement.lyrics %} <div class="lyrics"> <div class="song_header"> <div class="credits">{% if print_ccli_number and item.song.ccli_id != nil %}#{{item.song.ccli_id}} {% endif %}{% if print_author and item.song.author != '' %}by {{item.song.author}}{% endif %}</div> <div class="copyright">{% if print_copyright %}{{item.song.copyright}}{% endif %}</div> </div> <div class="chord_chart_content">{{item.arrangement.lyrics}}</div> </div> {% endif %} </td> {% if notes_in_columns == true %} {% for my_note in selected_item_notes %} <td class="item">{% for note in item.notes %} {% if note.category_name == my_note.name or note.category_name == my_note %}{{ note.note }}{% endif %} {% endfor %}</td> {% endfor %} {% else %} <td class="item"> {% for my_note in selected_item_notes %} {% for note in item.notes %} {% if note.category_name == my_note.name or note.category_name == my_note %}<strong>{{ note.category_name }}:</strong>{{ note.note }}<br/>{% endif %} {% endfor %} {% endfor %} </td> {% endif %} {% endcase %} </tr> {% endfor %} </tbody> {% if print_plan_item_times == true or print_plan_item_length == true %} <tfoot> <tr> {% if print_plan_item_times == true %} {% for time in plan.plan_times %} <th class="time">{{ time.ends_at | date: '%I:%M%p' | downcase }}</th> {% endfor %} {% endif %} {% if print_plan_item_length == true %} <th class="length">{{ plan.total_length }}</th> {% endif %} <th></th> {% if notes_in_columns == true %} {% for note_category in selected_item_notes %} <th></th> {% endfor %} {% else %} <th></th> {% endif %} </tr> </tfoot> {% endif %} </table> {% endif %} <!-- END PLAN TABLE --> </td> {% endfor %} </tr> </table> <!-- FORCE PAGE BREAK --> {% if force_page_break == true %} <div style="page-break-before: always;"></div> {% endif %} <!-- END FORCE PAGE BREAK --> <!-- TIMES & PEOPLE TABLE --> <!-- <table> <tr> {% if print_times == true %} <td class="times_section"> {% if plan.plan_times.size != 0 %} <div class="time_heading"> Service Times</div> {% for time in plan.plan_times %} <div class="time"> {% if time.name != "" %}{{ time.name }}<br/>{% endif %} {{ time.starts_at | date: '%m/%d at %I:%M%p' | downcase }}<br/> </div> {% endfor %} {% endif %} {% if plan.rehearsal_times.size != 0 %} <div class="time_heading"> Rehearsal Times</div> {% for time in plan.rehearsal_times %} <div class="time"> {% if time.name != "" %}{{ time.name }}<br/>{% endif %} {{ time.starts_at | date: '%m/%d at %I:%M%p' | downcase }}<br/> </div> {% endfor %} {% endif %} {% if plan.other_times.size != 0 %} <div class="time_heading"> Other Times</div> {% for time in plan.other_times %} <div class="time"> {% if time.name != "" %}{{ time.name }}<br/>{% endif %} {{ time.starts_at | date: '%m/%d at %I:%M%p' | downcase }}<br/> </div> {% endfor %} {% endif %} </td> {% else %} <td class="times_section"> {% if plan.plan_times.size != 0 and print_service_times == true %} <div class="time_heading"> Service Times</div> {% for time in plan.plan_times %} <div class="time"> {% if time.name != "" %}{{ time.name }}<br/>{% endif %} {{ time.starts_at | date: '%m/%d at %I:%M%p' | downcase }}<br/> </div> {% endfor %} {% endif %} {% if plan.rehearsal_times.size != 0 and print_rehearsal_times == true %} <div class="time_heading"> Rehearsal Times</div> {% for time in plan.rehearsal_times %} <div class="time"> {% if time.name != "" %}{{ time.name }}<br/>{% endif %} {{ time.starts_at | date: '%m/%d at %I:%M%p' | downcase }}<br/> </div> {% endfor %} {% endif %} {% if plan.other_times.size != 0 and print_other_times == true %} <div class="time_heading"> Other Times</div> {% for time in plan.other_times %} <div class="time"> {% if time.name != "" %}{{ time.name }}<br/>{% endif %} {{ time.starts_at | date: '%m/%d at %I:%M%p' | downcase }}<br/> </div> {% endfor %} {% endif %} </td> {% endif %} {% if print_plan_people == true %} {% if all_categories == true %} <td class="people_section"> {% for plan_person in plan.plan_people_not_declined %} {% if last_category != plan_person.category.id%} {% if current_position != '' %}</div>{% endif %} <div class="people_category"> {{ plan_person.category.name }} </div> {% assign current_position = '' %} {% endif %} {% assign last_category = plan_person.category.id %} {% if current_position != plan_person.position %} {% if current_position != '' %}</div>{% endif %} <div class="position"> <div class="person">{{ plan_person.position }}</div> {% endif %} <div>{{ plan_person.person.name }}{% if plan_person.status == 'U' %} <span class="icon-question">?</span>{% endif %}</div> {% assign current_position = plan_person.position %} {% endfor %} </div> </td> {% else %} <td class="people_section"> {% for category in my_categories %} <div class="people_category"> {{ category }} </div> {% for plan_person in plan.plan_people_not_declined %} {% if plan_person.category.name == category %} {% if current_position != plan_person.position %} {% if current_position != '' %}</div>{% endif %} <div class="position"> <div class="person">{{ plan_person.position }}</div> {% endif %} <div>{{ plan_person.person.name }}{% if plan_person.status == 'U' %} <span class="icon-question">?</span>{% endif %}</div> {% assign current_position = plan_person.position %} {% endif %} {% endfor %} </div> {% endfor %} </td> {% endif %} {% endif %} </tr> </table> --> <!-- END TIMES & PEOPLE TABLE --> </body> </html> |