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

Return to bug 36109