This is a Planning Center Services Report that displays mobile carrier info.
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 | <!-- QUICK CUSTOMIZATION: {% assign print_picture = "false" %} {% assign print_email = "false" %} {% assign print_phone = "true" %} {% assign print_phone_carrier = "true" %} {% assign print_address = "false" %} {% assign print_birthday = "false" %} {% assign print_anniversary = "false" %} {% assign print_notes = "false" %} {% assign print_last_logged_in = "false" %} {% assign print_created_at = "false" %} {% assign print_positions = "false" %} {% assign print_custom_properties = "false" %} {% assign picture_width = "50" %} SORTING: {% assign sorted_people = people | sort: "first_name" %} You can sort on: - last_name - first_name - updated_at - last_scheduled - created_at - logged_in_at --> <html> <head> <title>People</title> <style> * { font-family: Verdana, Arial; font-size: 10pt; } body { padding:0; margin:0; } .people { width: 100%; border-collapse: collapse; margin: 5px auto; padding: 5px; } .people th { background-color: #DDD; font-size: 12pt; text-align: left; padding: 2px; vertical-align: center; border: solid 1px black; } .people td { padding: 2px; vertical-align: top; border: solid 1px black; } .address { align: left; border-collapse: collapse; margin: 0; padding: 0; } .address td { border: none; margin: 0; padding: 0; } H1 { font-size: 26pt; padding: 0; margin: 0; } H2 { font-size: 16pt; padding: 0; margin: 0; } table .positions { width: 100%; border-collapse: collapse; margin: 0px; padding: 5px; } .positions td { vertical-align: top; border: solid 0px black; border-bottom: dashed 1px silver; } .service { } .position { } </style> </head> <body> <h1>Mobile Carrier Info</h1> <h2>{{ organization.name }}</h2> </br> <table class="people"> <tr> {% if print_picture == "true"%}<th></th>{% endif %} <th>Name</th> {% if print_email == "true"%}<th>Email</th>{% endif %} {% if print_phone == "true"%}<th>Phone</th>{% endif %} {% if print_phone_carrier == "true"%}<th>Phone Carrier</th>{% endif %} {% if print_address == "true"%}<th>Address</th>{% endif %} {% if print_birthday == "true"%}<th>Birthday</th>{% endif %} {% if print_anniversary == "true"%}<th>Anniversary</th>{% endif %} {% if print_notes == "true"%}<th>Notes</th>{% endif %} {% if print_last_logged_in == "true"%}<th>Last Logged In</th>{% endif %} {% if print_created_at == "true"%}<th>Date Created</th>{% endif %} {% if print_positions == "true"%}<th>Positions</th>{% endif %} {% if print_custom_properties == "true"%}<th>Custom Properties</th>{% endif %} </tr> {% for person in sorted_people %} <tr> {% if print_picture == "true"%}<td style="padding: 0; width:{{ picture_width }}px; height:{{ picture_width }}px;">{% if person.photo_thumbnail_url != "/assets/no_photo_thumbnail.gif" %}<img src="{{ person.photo_thumbnail_url }}" width={{ picture_width }} />{% endif %}</td>{% endif %} <td>{{ person.name }}</td> {% if print_email == "true" %}<td> {% for email in person.emails %} <div>{{ email.address }}</div> {% endfor %} </td>{% endif %} {% if print_phone == "true" %}<td> {% for phone_number in person.phone_numbers %} {% if phone_number.type_name == "Mobile" %} <div>{{ phone_number.number }}</div> {% endif %} {% endfor %} </td>{% endif %} {% if print_phone_carrier == "true" %}<td> {% for phone_number in person.phone_numbers %} {% if phone_number.type_name == "Mobile" %} <div>{{ phone_number.carrier }}</div> {% endif %} {% endfor %} </td>{% endif %} {% if print_address == "true" %}<td> {% for address in person.addresses %} <div><table class="address"><tr><td>{{ address.type_name }}: </td><td>{{ address.line_1 }}</br>{{ address.city }}, {{ address.state }} {{ address.zip }}</td></tr></table></div> {% endfor %} </td>{% endif %} {% if print_birthday == "true" %}<td> <div>{{ person.birthdate | date: '%m/%d/%y' | downcase }}</div> </td>{% endif %} {% if print_anniversary == "true" %}<td> <div>{{ person.anniversary | date: '%m/%d/%y' | downcase }}</div> </td>{% endif %} {% if print_notes == "true" %}<td> <div>{{ person.notes }}</div> </td>{% endif %} {% if print_last_logged_in == "true" %}<td> <div>{{ person.logged_in_at }}</div> </td>{% endif %} {% if print_created_at == "true" %}<td> <div>{{ person.created_at }}</div> </td>{% endif %} {% if print_positions == "true" %}<td> <table class="positions"> {% for position in person.positions %} <tr> <td class="service">{{ position.category.service_type.name }}</td> <td class="position">{{ position.name }} ({{ position.category.name }})</td> </tr> {% endfor %} </table> </td>{% endif %} {% if print_custom_properties == "true" %}<td> <table class="positions"> {% for property in person.custom_properties %} <tr> <td class="service">{{ property.option.name }} ({{ property.field.name }})</td> </tr> {% endfor %} </table> </td>{% endif %} </tr> {% endfor %} </table> </body> </html> |