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 880-905 tables: Link Here
880
          message_transport_type: email
880
          message_transport_type: email
881
          lang: default
881
          lang: default
882
          content:
882
          content:
883
            - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
883
            - "[%- USE Price -%]"
884
            - "Dear [% borrower.firstname %] [% borrower.surname %],"
884
            - ""
885
            - ""
885
            - "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."
886
            - "According to our current records, you have items that are overdue."
887
            - "Please return or renew them at the branch below as soon as possible."
886
            - ""
888
            - ""
887
            - "<<branches.branchname>>"
889
            - "[% branch.branchname %]"
888
            - "<<branches.branchaddress1>>"
890
            - "[% branch.branchaddress1 %]"
889
            - "<<branches.branchaddress2>> <<branches.branchaddress3>>"
891
            - "[% branch.branchaddress2 %] [% branch.branchaddress3 %]"
890
            - "Phone: <<branches.branchphone>>"
892
            - "Phone: [% branch.branchphone %]"
891
            - "Fax: <<branches.branchfax>>"
893
            - "Fax: [% branch.branchfax %]"
892
            - "Email: <<branches.branchemail>>"
894
            - "Email: [% branch.branchemail %]"
893
            - ""
895
            - ""
894
            - "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."
896
            - "If you have registered a password with the library, and you have a renewal available, you may renew online."
897
            - "If an item becomes more than 30 days overdue, you will be unable to use your library card until the item is returned."
895
            - ""
898
            - ""
896
            - "The following item(s) is/are currently overdue:"
899
            - "The following [% IF overdues.count > 1 %]items are[% ELSE %]item is[% END %] currently overdue:"
897
            - ""
900
            - ""
898
            - "<item>\"<<biblio.title>>\" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>"
901
            - "[% FOREACH overdue IN overdues %]"
902
            - "[%- SET item = overdue.item -%]"
903
            - "\"[% item.biblio.title %]\" by [% item.biblio.author %], [% item.itemcallnumber %], Barcode: [% item.barcode %], Fine: [% overdue.overdue_fines.total_outstanding | $Price %]"
904
            - "[% END %]"
899
            - ""
905
            - ""
900
            - "Thank-you for your prompt attention to this matter."
906
            - "Thank-you for your prompt attention to this matter."
901
            - ""
907
            - ""
902
            - "<<branches.branchname>> Staff"
908
            - "[% branch.branchname %] Staff"
903
            - ""
909
            - ""
904
910
905
        - module: circulation
911
        - module: circulation
906
- 

Return to bug 36109