LP#1904593: added release notes
authorGalen Charlton <gmc@equinoxOLI.org>
Mon, 20 Sep 2021 16:26:57 +0000 (12:26 -0400)
committerGalen Charlton <gmc@equinoxOLI.org>
Mon, 20 Sep 2021 16:26:57 +0000 (12:26 -0400)
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>

docs/RELEASE_NOTES_NEXT/Circulation/m_account_url.adoc

index ac7d82c..48b4b11 100644 (file)
@@ -1,16 +1,35 @@
 == Template Support for Information and My Account URLs ==
 
-A new setting has been added named lib.my_account_url to provide a path usable in templates to a patron's account login.  Both this and the existing lib.info_url settings are now available in the server side processed templates, action triggers and traditional print receipts.
+A new setting has been added named `lib.my_account_url` to provide a
+path usable in templates to a patron's account login. Both this and
+the existing `lib.info_url` settings are now available in the
+server-side processed templates, action triggers and traditional print
+receipts.
+
+Web side processed templates can be found in 
+Administration -> Server Administration -> Print Templates.
 
-Web side processed templates in 3.6 can be found in Administration -> Server Administration -> Print Templates.  
 You can add settings using the following syntax:
+
+[source,html]
+----
 <div>[% helpers.get_org_setting(staff_org.id, 'lib.info_url'); %]</div>
 <div>[% helpers.get_org_setting(staff_org.id, 'lib.my_account_url'); %]</div>
+----
+
+Print Receipts found in Administration -> Workstation -> Print Templates
+can be added with these includes:
 
-Print Receipts found in Administration -> Workstation -> Print Templates can be added with these includes:
+[source,conf]
+----
 {{includes.info_url}}
 {{includes.my_account_url}}
+----
 
-Action triggers can use both values with the helpers.get_org_setting include.  Example:
-[% helpers.get_org_setting(circ_lib.id, 'lib.my_account_url') %]
+Action triggers can use both values with the `helpers.get_org_setting`
+include.  Example:
 
+[source,conf]
+----
+[% helpers.get_org_setting(circ_lib.id, 'lib.my_account_url') %]
+----