Attendance Roster by Household
Imports: 21

The recent issues with Check-Ins and sometimes internet issue at the check-in stations we have modified the original report by Nathan Ward (simple attendance roster). Report from any People List. We use this for Sunday morning worship with our Regular Attendees list. This report is grouped by household and is listing only the adults. Because the output already has table grids, we removed the lines/text boxes created in the original. Idea: Print and keep at the check-ins area; when the internet is out or check-ins is down, pull it out. Once used, print out another for the next time it's needed. Credit to original https://pcochef.com/recipes/L0ZAzXz David Bartholomew, Shepherd of the Grove Lutheran Church, Maple Grove, MN

Preview

Report Preview


 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
<html>
  <head>
    <title>Attendance Roster</title>
    {{ helpers.bootstrap_3 }}
    <style>
      @page { margin: 0.75in; size: US-Letter; }
      body { font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif; }
    </style>
  </head>
  <body>
        <div class="container">
       <div class="pull-right">
        <div class="well well-sm text-right">
          {{ people.size }} {{ people.size | pluralize: "person", "people" }}<br>
          Roster Printed:  {{ list.updated_at | date: "%B %e, %Y"  }}<br>
          <strong>Date: _____ / _____ / _____</strong>
        </div>
      </div>
      <h2>
        Attendance Roster
        <br>
        <small>
          {{ organization.name }}
        </small>
      </h2>
    <h1>
      {{ filter.name }}
    </h1>
    <table class="table table-bordered table-condensed">
      <thead>
        <tr>
          <th width="40%">Name</th>
          <th width="5%">0800</th>
          <th width="5%">1030</th>
          <th width="50%">Comments</th>
        </tr>
      </thead>

      <tbody>
          {% assign sorted_households = households | sort_natural: 'name' %}
			    {% for household in sorted_households %}
          <tr>
            <td>{{ household.name }}</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
          </tr>
        {% endfor %}
        <tr>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
          </tr>
        <tr>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
          </tr>
        <tr>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
          </tr>
        <tr>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
          </tr>
        <tr>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
          </tr>
      </tbody>
    </table>
  </body>
</html>