END IF;
END $$;
+
+UPDATE action_trigger.event_definition SET template =
+$T$
+[%- USE date -%]
+[%- SET user = target -%]
+<div style="page-break-after:always">
+ <style> li { padding: 8px; margin 5px; }</style>
+ <div>[% date.format(date.now, '%m/%d/%Y') %]</div>
+ <br/>
+ [% user.first_given_name %]
+ <ol>
+ [% FOR xact IN user.open_billable_transactions_summary %]
+ [% NEXT IF xact.balance_owed <= 0 %]
+ <li>
+ <div>Details:
+ [% IF xact.xact_type == 'circulation' %]
+ [%- helpers.get_copy_bib_basics(xact.circulation.target_copy).title -%]
+ [% ELSE %]
+ [%- xact.last_billing_type -%]
+ [% END %]
+ </div>
+ <div>Total Billed: [% xact.total_owed %]</div>
+ <div>Total Paid: [% xact.total_paid %]</div>
+ <div>Balance Owed : [% xact.balance_owed %]</div>
+ </li>
+ [% END %]
+ </ol>
+</div>
+$T$
+WHERE hook = 'format.selfcheck.fines';
+
COMMIT;