View | Details | Raw Unified | Return to bug 36109
Collapse All | Expand All

(-)a/installer/data/mysql/en/mandatory/sample_notices.yml (-13 / +18 lines)
Lines 829-854 tables: Link Here
829
          message_transport_type: email
829
          message_transport_type: email
830
          lang: default
830
          lang: default
831
          content:
831
          content:
832
            - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
832
            - "[%- USE Price -%]"
833
            - "Dear [% borrower.firstname %] [% borrower.surname %],"
833
            - ""
834
            - ""
834
            - "According to our current records, you have items that are overdue.Your library does not charge late fines, but please return or renew them at the branch below as soon as possible."
835
            - "According to our current records, you have items that are overdue."
836
            - "Please return or renew them at the branch below as soon as possible."
835
            - ""
837
            - ""
836
            - "<<branches.branchname>>"
838
            - "[% branch.branchname %]"
837
            - "<<branches.branchaddress1>>"
839
            - "[% branch.branchaddress1 %]"
838
            - "<<branches.branchaddress2>> <<branches.branchaddress3>>"
840
            - "[% branch.branchaddress2 %] [% branch.branchaddress3 %]"
839
            - "Phone: <<branches.branchphone>>"
841
            - "Phone: [% branch.branchphone %]"
840
            - "Fax: <<branches.branchfax>>"
842
            - "Fax: [% branch.branchfax %]"
841
            - "Email: <<branches.branchemail>>"
843
            - "Email: [% branch.branchemail %]"
842
            - ""
844
            - ""
843
            - "If you have registered a password with the library, and you have a renewal available, you may renew online. If an item becomes more than 30 days overdue, you will be unable to use your library card until the item is returned."
845
            - "If you have registered a password with the library, and you have a renewal available, you may renew online."
846
            - "If an item becomes more than 30 days overdue, you will be unable to use your library card until the item is returned."
844
            - ""
847
            - ""
845
            - "The following item(s) is/are currently overdue:"
848
            - "The following [% IF overdues.count > 1 %]items are[% ELSE %]item is[% END %] currently overdue:"
846
            - ""
849
            - ""
847
            - "<item>\"<<biblio.title>>\" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>"
850
            - "[% FOREACH overdue IN overdues %]"
851
            - "[%- SET item = overdue.item -%]"
852
            - "\"[% item.biblio.title %]\" by [% item.biblio.author %], [% item.itemcallnumber %], Barcode: [% item.barcode %], Fine: [% overdue.overdue_fines.total_outstanding | $Price %]"
853
            - "[% END %]"
848
            - ""
854
            - ""
849
            - "Thank-you for your prompt attention to this matter."
855
            - "Thank-you for your prompt attention to this matter."
850
            - ""
856
            - ""
851
            - "<<branches.branchname>> Staff"
857
            - "[% branch.branchname %] Staff"
852
            - ""
858
            - ""
853
859
854
        - module: circulation
860
        - module: circulation
855
- 

Return to bug 36109