Last active
December 1, 2018 02:30
-
-
Save dankerizer/0ab98e5167377952d8e4339377bff44c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%product% | |
%nama% | |
%phone% | |
%email% | |
%total_pembayaran% | |
%kurir% | |
%ongkir% | |
%alamat% | |
%quantity% | |
%harga% | |
%tanggal_order% | |
%invoice_id% | |
%kode_unik% | |
%harga_no_unik% | |
%kecamatan% | |
%diskon% | |
%kode_kupon% | |
%harga_no_diskon% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[caladea_thankyou_page] | |
<div class="ui grid"> | |
<div class="six wide tablet eleven wide computer column"> | |
<h3>Invoice Untuk</h3> | |
<p><Strong>%nama%</Strong></p> | |
<p>%alamat%</p> | |
</div> | |
<div class="six wide tablet five wide computer column"> | |
<table class="ui table very basic"> | |
<tr> | |
<th>Invoice</th> | |
<td>#%invoice_id%</td> | |
</tr> | |
<tr><th>Tanggal</th> | |
<td>%tanggal_order%</td> | |
</tr> | |
</table> | |
</div> | |
</div> | |
<table class="ui celled table"> | |
<thead> | |
<tr> | |
<th >Produk yang dibeli</th> | |
<th class="center aligned">Jumlah</th> | |
<th>Harga</th> | |
</tr> | |
<tr> | |
<td>%product%</td> | |
<td class="center aligned">%quantity%</td> | |
<td class="right aligned">Rp. %harga%</td> | |
</tr> | |
<tr> | |
<td colspan="2" class="right aligned">Ongkos Kirim</td> | |
<td class="right aligned">Rp. <strong>%ongkir%</strong></td> | |
</tr> | |
<tr class="warning"><td colspan="2" class="right aligned">Total Pembayaran</td><td class="right aligned">Rp. %total_pembayaran%</td></tr> | |
</thead> | |
</table> | |
[/caladea_thankyou_page] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment