feat(templates): English Contract template
This commit is contained in:
		@@ -25,9 +25,9 @@
 | 
			
		||||
</head>
 | 
			
		||||
 | 
			
		||||
<body class="A5 landscape">
 | 
			
		||||
  {{#each runners}}
 | 
			
		||||
  {{ range .Runners }}
 | 
			
		||||
  <div class="sheet">
 | 
			
		||||
    <img id="header_img" width="100%" src="sponsoringheader.png" />
 | 
			
		||||
    <img id="header_img" width="100%" src="data:image/png;base64,{{ $.SponsoringHeader}}" />
 | 
			
		||||
    <div style=" padding: 0 1rem 0 1rem;">
 | 
			
		||||
      <div class="columns">
 | 
			
		||||
        <div class="column is-10">
 | 
			
		||||
@@ -40,35 +40,35 @@
 | 
			
		||||
              </p>
 | 
			
		||||
            </div>
 | 
			
		||||
          </div>
 | 
			
		||||
          <p> On the occasion of the {{eventname}} I/We want to support </p>
 | 
			
		||||
          <p> On the occasion of the {{ $.EventName }} I/We want to support </p>
 | 
			
		||||
          <div class="columns">
 | 
			
		||||
            <div class="column is-9">
 | 
			
		||||
              <span style="border-bottom: 1px solid; width: 100%; display: block;">{{this.firstname}}
 | 
			
		||||
                {{this.middlename}}</span>
 | 
			
		||||
              <span style="border-bottom: 1px solid; width: 100%; display: block;">{{ .FirstName }}
 | 
			
		||||
                {{ .MiddleName }}</span>
 | 
			
		||||
              <p style="font-size: x-small; display: block;">First name</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="column is-3">
 | 
			
		||||
              <span style="border-bottom: 1px solid; width: 100%; display: block;">{{this.id}}</span>
 | 
			
		||||
              <span style="border-bottom: 1px solid; width: 100%; display: block;">{{ .ID }}</span>
 | 
			
		||||
              <p style="font-size: x-small; display: block;">ID</p>
 | 
			
		||||
            </div>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="column">
 | 
			
		||||
          <img style="vertical-align: revert; margin-top: auto; object-fit: cover; max-height: 2cm;"
 | 
			
		||||
            src="{{--bc this.id ../codeformat}}" />
 | 
			
		||||
            src="{{/* TODO: BARCODE*/}}" />
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="columns" style="padding-top: 1rem;">
 | 
			
		||||
        <div class="column is-6">
 | 
			
		||||
          <span style="border-bottom: 1px solid; width: 100%; display: block;">{{this.lastname}}</span>
 | 
			
		||||
          <span style="border-bottom: 1px solid; width: 100%; display: block;">{{ .LastName }}</span>
 | 
			
		||||
          <p style="font-size: x-small; display: block;">Last Name</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="column is-6">
 | 
			
		||||
          <span style="border-bottom: 1px solid; width: 100%; display: block;">{{this.group.fullName}}</span>
 | 
			
		||||
          <span style="border-bottom: 1px solid; width: 100%; display: block;">{{ .Group.Name}}</span>
 | 
			
		||||
          <p style="font-size: x-small; display: block;">Team/class</p>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
      <p style="margin-top: -0.5rem">with the amount of _____{{currency_symbol}} per kilometer run.</p>
 | 
			
		||||
      <p style="margin-top: -0.5rem">with the amount of _____{{ $.CurrencySymbol }} per kilometer run.</p>
 | 
			
		||||
      <div class="columns" style="margin-top: -1rem;">
 | 
			
		||||
        <div class="column is-6">
 | 
			
		||||
          <span style="border-bottom: 1px solid; width: 100%; display: block;"> </span>
 | 
			
		||||
@@ -80,7 +80,7 @@
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
      <p style="font-size: medium; margin-top: -0.5rem;">Address (Sponsor)</p>
 | 
			
		||||
      <p style="font-size: x-small;">(You have to provide an address if you want a donation receipt - Donation receipts can't be issued for total donation amounts under {{sponsoring_receipt_minimum_amount}}{{currency_symbol}})</p>
 | 
			
		||||
      <p style="font-size: x-small;">(You have to provide an address if you want a donation receipt - Donation receipts can't be issued for total donation amounts under {{ $.ReceiptMinimumAmount }}{{ $.CurrencySymbol }})</p>
 | 
			
		||||
      <div class="columns" style="margin-top: -1rem;">
 | 
			
		||||
        <div class="column is-8">
 | 
			
		||||
          <span style="border-bottom: 1px solid; width: 100%; display: block;"> </span>
 | 
			
		||||
@@ -111,10 +111,10 @@
 | 
			
		||||
          <p style="font-size: x-small; display: block;">Signature</p>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
      <p style="font-size: xx-small; overflow: hidden; height: 4rem; text-align: center;">{{../disclaimer}}</p>
 | 
			
		||||
      <p style="font-size: xx-small; overflow: hidden; height: 4rem; text-align: center;">{{ $.Disclaimer }}</p>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
  {{/each}}
 | 
			
		||||
  {{ end }}
 | 
			
		||||
</body>
 | 
			
		||||
 | 
			
		||||
</html>
 | 
			
		||||
		Reference in New Issue
	
	Block a user