A short explanation. . . 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 List version that shows a longer list of people.
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 | <html> <head> <title>Next Steps Summary</title> <style> /* Print settings for landscape on 8.5" x 11" paper */ @page { size: landscape; margin: 0.5in; } @media print { body { zoom: 0.95; } tr { page-break-inside: avoid; } .key-legend { page-break-inside: avoid; } } body { font-family: sans-serif; margin: 0; padding: 0; font-size: 0.8em; } /* Header container with logo on the right */ .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: separate; border-spacing: 0; border: 1px solid #ccc; border-radius: 8px; overflow: hidden; } th, td { border-bottom: 1px solid #ccc; padding: 4px; text-align: center; line-height: 1.2; } /* Remove bottom border for the last row */ tbody tr:last-child td { border-bottom: none; } /* Header styling for grouped headers */ thead th { font-size: 0.85em; padding: 4px; color: #333; } /* Left header cell (formerly "Profile") */ thead .col-name { background-color: #D0ECD0; } /* Group heading backgrounds (top header row) */ .group-heading-belong { background-color: #D0ECD0; } .group-heading-believe { background-color: #C4E8C4; } .group-heading-become { background-color: #B9E3B9; } /* Column header backgrounds (second header row) */ .col-belong { background-color: #EAF7EA; } .col-believe { background-color: #E2F6E2; } .col-become { background-color: #DAF5DA; } /* Name column body cells (can remain white) */ .col-name-body { background-color: #fff; } /* Alternating row backgrounds for tbody */ tbody tr:nth-child(odd) td { background-color: #fff !important; } tbody tr:nth-child(even) td { background-color: #f9f9f9 !important; } /* Profile name styling */ .profile-name { font-size: 0.65em; word-spacing: -0.05em; display: block; margin-top: 2px; } /* Table icons styling */ .table-icon { width: 50px !important; height: 50px !important; } /* Key Legend styling */ .key-legend { text-align: center; margin-top: 10px; font-size: 0.8em; } .key-legend img { width: 20px; height: 20px; vertical-align: middle; margin: 0 5px; } </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 headings --> <tr> <!-- Left header cell: blank, with green background --> <th rowspan="2" class="col-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">Active Member</th> </tr> </thead> <tbody> {% for person in people %} <tr> <!-- Profile Column: image (if available) and name; body cells use a separate class for white background --> <td class="col-name-body"> {% assign profile_pic = person.avatar_url %} {% if profile_pic == blank %} {% assign profile_pic = person.image_url %} {% endif %} {% if profile_pic == blank %} {% assign profile_pic = person.photo_url %} {% endif %} {% if profile_pic %} <img src="{{ profile_pic }}" alt="{{ person.name }}" style="width:60px; height:60px; border-radius:50%;" /><br/> {% endif %} <span class="profile-name"> {% assign parts = person.name | split: " " %} {% if parts.size > 1 %} {{ parts[0] }} {{ parts[1] | slice: 0, 1 }}. {% else %} {{ person.name }} {% endif %} </span> </td> <!-- BELONG: Visited Gathering --> <td class="col-belong"> {% assign value = person.custom_tabs.next_steps_summary.visited_an_event_or_gathering | remove: "✅ " | remove: "❌ " %} {% if value == "Yes" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Yes.png" alt="Yes" /> {% elsif value == "No" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/No.png" alt="No" /> {% else %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Unknown.png" alt="Unknown" /> {% endif %} </td> <!-- BELONG: Registered for Group --> <td class="col-belong"> {% assign value = person.custom_tabs.next_steps_summary.registered_for_first_group | remove: "✅ " | remove: "❌ " %} {% if value == "Yes" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Yes.png" alt="Yes" /> {% elsif value == "No" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/No.png" alt="No" /> {% else %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Unknown.png" alt="Unknown" /> {% endif %} </td> <!-- BELONG: Attending Group --> <td class="col-belong"> {% assign value = person.custom_tabs.next_steps_summary.regularly_attends_a_group | remove: "✅ " | remove: "❌ " %} {% if value == "Yes" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Yes.png" alt="Yes" /> {% elsif value == "No" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/No.png" alt="No" /> {% else %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Unknown.png" alt="Unknown" /> {% endif %} </td> <!-- BELIEVE: Serving Others --> <td class="col-believe"> {% assign value = person.custom_tabs.next_steps_summary.regularly_serving_others | remove: "✅ " | remove: "❌ " %} {% if value == "Yes" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Yes.png" alt="Yes" /> {% elsif value == "No" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/No.png" alt="No" /> {% else %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Unknown.png" alt="Unknown" /> {% endif %} </td> <!-- BELIEVE: Committed to Jesus --> <td class="col-believe"> {% assign value = person.custom_tabs.next_steps_summary.committed_to_following_jesus | remove: "✅ " | remove: "❌ " %} {% if value == "Yes" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Yes.png" alt="Yes" /> {% elsif value == "No" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/No.png" alt="No" /> {% else %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Unknown.png" alt="Unknown" /> {% endif %} </td> <!-- BELIEVE: Baptized In Faith --> <td class="col-believe"> {% assign value = person.custom_tabs.next_steps_summary.baptized_in_faith | remove: "✅ " | remove: "❌ " %} {% if value == "Yes" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Yes.png" alt="Yes" /> {% elsif value == "No" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/No.png" alt="No" /> {% else %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Unknown.png" alt="Unknown" /> {% endif %} </td> <!-- BECOME: Investing in ONE --> <td class="col-become"> {% assign value = person.custom_tabs.next_steps_summary.investing_in_one | remove: "✅ " | remove: "❌ " %} {% if value == "Yes" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Yes.png" alt="Yes" /> {% elsif value == "No" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/No.png" alt="No" /> {% else %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Unknown.png" alt="Unknown" /> {% endif %} </td> <!-- BECOME: Giving Generously --> <td class="col-become"> {% assign value = person.custom_tabs.next_steps_summary.giving_generously | remove: "✅ " | remove: "❌ " %} {% if value == "Yes" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Yes.png" alt="Yes" /> {% elsif value == "No" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/No.png" alt="No" /> {% else %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Unknown.png" alt="Unknown" /> {% endif %} </td> <!-- BECOME: Active Member --> <td class="col-become"> {% assign value = person.custom_tabs.next_steps_summary.has_joined_as_an_active_member | remove: "✅ " | remove: "❌ " %} {% if value == "Yes" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Yes.png" alt="Yes" /> {% elsif value == "No" %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/No.png" alt="No" /> {% else %} <img class="table-icon" src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Unknown.png" alt="Unknown" /> {% endif %} </td> </tr> {% endfor %} </tbody> </table> <!-- Key Legend --> <div class="key-legend"> <img src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Yes.png" alt="Yes"> = Yes <img src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/No.png" alt="No"> = No <img src="https://22484759.fs1.hubspotusercontent-na1.net/hubfs/22484759/Planning%20Center/Icons/Unknown.png" alt="Unknown"> = Unknown </div> </body> </html> |