From Nathan Ward on Facebook PCO Mastermind https://www.facebook.com/groups/PCOmastermind This is a really simple attendance roster that will print for any People List.
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
<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>Class Date: _____ / _____ / _____</strong>
</div>
</div>
<h2>
{{ list.name }}
<br>
<small>
{{ organization.name }}
</small>
</h2>
<h1>
{{ filter.name }}
</h1>
<table class="table table-bordered table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Check if Present</th>
<th>Comments/Prayer Request</th>
</tr>
</thead>
<tbody>
{% for person in people %}
<tr>
<td>{{ person.name }}</td>
<td>[___]</td>
<td>_______________________________________________________ </td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>