We made this to track the Next Steps that our members take as the mature in faith and relationships at church. We hope you like it, and checkout the group version as well. It was made so small group leaders could be intentional about moving their people forward in discipleship.
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 | <html> <head> <title>Next Steps Summary</title> <style> /* Print settings for landscape on 8.5" x 11" paper */ @page { size: landscape; margin: 0.5in; } body { font-family: sans-serif; margin: 0; padding: 0; font-size: 0.8em; } .header-container { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; } .header-logo { width: 200px; height: auto; } table { width: 100%; border-collapse: collapse; } th, td { border: 1px solid #ccc; padding: 6px; text-align: center; line-height: 1.2; } /* Header styling for grouped headers */ thead th { font-size: 0.75em; padding: 4px; color: #333; /* Changed header text to dark grey */ } .group-heading-belong { background-color: #D0ECD0; } .group-heading-believe { background-color: #C4E8C4; } .group-heading-become { background-color: #B9E3B9; } /* Column header backgrounds for second header row */ .col-belong { background-color: #EAF7EA; } .col-believe { background-color: #E2F6E2; } .col-become { background-color: #DAF5DA; } /* Name column remains white */ .col-name { background-color: #fff; } /* Alternating row backgrounds for tbody: white and very light grey */ tbody tr:nth-child(odd) td { background-color: #fff !important; } tbody tr:nth-child(even) td { background-color: #f9f9f9 !important; } </style> </head> <body> <div class="header-container"> <h2>Next Steps Summary</h2> <img src="https://avatars.planningcenteronline.com/uploads/organization/481812-1726310169/avatar.2.png" alt="Center Pointe Community Church" class="header-logo"> </div> <table> <thead> <!-- Top row: group labels --> <tr> <!-- Name column spans two rows --> <th rowspan="2" class="col-name">Name</th> <th colspan="3" class="group-heading-belong">BELONG</th> <th colspan="3" class="group-heading-believe">BELIEVE</th> <th colspan="3" class="group-heading-become">BECOME</th> </tr> <!-- Second row: individual column labels --> <tr> <th class="col-belong">Visited Gathering</th> <th class="col-belong">Registered for Group</th> <th class="col-belong">Attending Group</th> <th class="col-believe">Serving Others</th> <th class="col-believe">Committed to Jesus</th> <th class="col-believe">Baptized In Faith</th> <th class="col-become">Investing in ONE</th> <th class="col-become">Giving Generously</th> <th class="col-become">Church Member</th> </tr> </thead> <tbody> {% for person in people %} <tr> <td class="col-name"> {{ person.name }} </td> <td class="col-belong"> {{ person.custom_tabs.next_steps_summary.visited_an_event_or_gathering | remove: "✅ " | remove: "❌ " }} </td> <td class="col-belong"> {{ person.custom_tabs.next_steps_summary.registered_for_first_group | remove: "✅ " | remove: "❌ " }} </td> <td class="col-belong"> {{ person.custom_tabs.next_steps_summary.regularly_attends_a_group | remove: "✅ " | remove: "❌ " }} </td> <td class="col-believe"> {{ person.custom_tabs.next_steps_summary.regularly_serving_others | remove: "✅ " | remove: "❌ " }} </td> <td class="col-believe"> {{ person.custom_tabs.next_steps_summary.committed_to_following_jesus | remove: "✅ " | remove: "❌ " }} </td> <td class="col-believe"> {{ person.custom_tabs.next_steps_summary.baptized_in_faith | remove: "✅ " | remove: "❌ " }} </td> <td class="col-become"> {{ person.custom_tabs.next_steps_summary.investing_in_one | remove: "✅ " | remove: "❌ " }} </td> <td class="col-become"> {{ person.custom_tabs.next_steps_summary.giving_generously | remove: "✅ " | remove: "❌ " }} </td> <td class="col-become"> {{ person.custom_tabs.next_steps_summary.has_joined_as_an_active_member | remove: "✅ " | remove: "❌ " }} </td> </tr> {% endfor %} </tbody> </table> </body> </html> |