--- /dev/null
+<!--
+Template for printing a patron address. Fields include:
+
+* first_given_name
+* second_given_name
+* family_name
+* address.street1
+* address.street2
+* address.city
+* address.state
+* address.post_code
+
+-->
+<div>
+ <div>
+ {{patron.first_given_name}}
+ {{patron.second_given_name}}
+ {{patron.family_name}}
+ </div>
+ <div>{{address.street1}}</div>
+ <div ng-if="address.street2">{{address.street2}}</div>
+ <div>
+ {{address.city}}, {{address.state}} {{address.post_code}}
+ </div>
+</div>
New Perl Dependency
+++++++++++++++++++
-A new Perl module `HTML::Defang` is required for cleansing generate HTML
+A new Perl module `HTML::Defang` is required for cleansing generated HTML
of executable code for security purposes. The dependency is added to
the Makefile.install process for new builds. Existing Evergreen instances
will need the dependency manually installed.
---------------------------------------------------------------------------
sudo apt-get install libhtml-defang-perl
---------------------------------------------------------------------------
-
-Migrating To A Server Template
-++++++++++++++++++++++++++++++
-
-Once a template is added to the database and the admin has configured the
-template as desired, the server-managed template will be used instead of
-the traditional TT2 templates in the AngularJS client.
-
-Using the new 'Address Label' template for example.
-
-1. Modify, test, and activate the server template labeled 'Address Label'
-2. Remove any the workstation setting which stores user-saved versions
- of the template by deleting the workstation type.
-[source,sql]
----------------------------------------------------------------------------
-DELETE FROM config.workstation_setting_type
- WHERE name = 'eg.print.template.patron_address';
----------------------------------------------------------------------------
-3. Navigate to patron search, search for a patron, then 'Print' the address.
-