RSS Git Download  Clone
Raw Blame History
[% content_only = 1 # no html wrappers %]

  [% # PROCESS dumper.tt dump = packs %]

<!-- BEGIN [% template.name %] -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
 "http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
    <title>Outreach Report Labels</title>
    <link type="text/css" rel="stylesheet" href="/css/addr_labels.css" />
</head>

<body>
	<table>
        [% FOREACH entry IN addresses %]
		<tr>
            <td>
                <p>
                    [% entry.first_name | ucfirst %]
                    [% entry.last_name  | upper %]
                </p>
                <p>[% entry.address %]</p>
                <p>[% entry.post_code %]</p>
            </td>
            <td>
                [% entry.display_name %]
            </td>            
		</tr>
        [% END %]
	</table>
</body>

</html>