thiswebshoprules

git clone https://git.tarina.org/thiswebshoprules
Log | Files | Refs

payments.html.html (3918B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
      5 <title>payments.html - getdafuckouttahere.net - Unnamed repository; edit this file &#39;description&#39; to name the repository.
      6 </title>
      7 <link rel="icon" type="image/png" href="../../../favicon.png" />
      8 <link rel="alternate" type="application/atom+xml" title="getdafuckouttahere.net Atom Feed" href="../../../atom.xml" />
      9 <link rel="alternate" type="application/atom+xml" title="getdafuckouttahere.net Atom Feed (tags)" href="../../../tags.xml" />
     10 <link rel="stylesheet" type="text/css" href="../../../style.css" />
     11 </head>
     12 <body>
     13 <table><tr><td><a href="../../../../"><img src="../../../logo.png" alt="" width="32" height="32" /></a></td><td><h1>getdafuckouttahere.net</h1><span class="desc">Unnamed repository; edit this file &#39;description&#39; to name the repository.
     14 </span></td></tr><tr><td></td><td>
     15 <a href="../../../log.html">Log</a> | <a href="../../../files.html">Files</a> | <a href="../../../refs.html">Refs</a></td></tr></table>
     16 <hr/>
     17 <div id="content">
     18 <p> payments.html (960B)</p><hr/><pre id="blob">
     19 <a href="#l1" class="line" id="l1">      1</a> $def with (payments)
     20 <a href="#l2" class="line" id="l2">      2</a> $var payments = payments
     21 <a href="#l3" class="line" id="l3">      3</a> $ link = &#39;&#39;
     22 <a href="#l4" class="line" id="l4">      4</a> &lt;/div&gt;
     23 <a href="#l5" class="line" id="l5">      5</a> &lt;h2&gt;payments&lt;/h2&gt;
     24 <a href="#l6" class="line" id="l6">      6</a> &lt;table&gt;
     25 <a href="#l7" class="line" id="l7">      7</a> $for i in payments:
     26 <a href="#l8" class="line" id="l8">      8</a>     $if i.payment == &#39;Bitcoin&#39;:
     27 <a href="#l9" class="line" id="l9">      9</a>         $ link = &quot;/paybtc/&quot; + i.invoice_key
     28 <a href="#l10" class="line" id="l10">     10</a>     $if i.payment == &#39;Bitcoin Lightning&#39;:
     29 <a href="#l11" class="line" id="l11">     11</a>         $ link = &quot;/payln/&quot; + i.invoice_key
     30 <a href="#l12" class="line" id="l12">     12</a>     &lt;pre&gt;
     31 <a href="#l13" class="line" id="l13">     13</a>     &lt;b&gt;status: $i.status&lt;/b&gt;
     32 <a href="#l14" class="line" id="l14">     14</a>     &lt;a href=$link&gt;$i.invoice_key&lt;/a&gt;
     33 <a href="#l15" class="line" id="l15">     15</a>     $i.payment 
     34 <a href="#l16" class="line" id="l16">     16</a>     $i.btc
     35 <a href="#l17" class="line" id="l17">     17</a>     $i.ln
     36 <a href="#l18" class="line" id="l18">     18</a>     $i.products | $float(i.amount/100) &amp;euro; | Satoshis: $i.totsats
     37 <a href="#l19" class="line" id="l19">     19</a>     order $i.timestamp
     38 <a href="#l20" class="line" id="l20">     20</a>     $if i.datepaid:
     39 <a href="#l21" class="line" id="l21">     21</a>         paid $i.datepaid
     40 <a href="#l22" class="line" id="l22">     22</a>     $else:
     41 <a href="#l23" class="line" id="l23">     23</a>         not paid!
     42 <a href="#l24" class="line" id="l24">     24</a>     $i.email
     43 <a href="#l25" class="line" id="l25">     25</a>     $i.firstname $i.lastname
     44 <a href="#l26" class="line" id="l26">     26</a>     $i.address
     45 <a href="#l27" class="line" id="l27">     27</a>     $i.postalcode
     46 <a href="#l28" class="line" id="l28">     28</a>     $i.town
     47 <a href="#l29" class="line" id="l29">     29</a>     $i.country
     48 <a href="#l30" class="line" id="l30">     30</a>     &lt;a href=&#39;/payments?status=thankyou&amp;key=$i.invoice_key&#39;&gt;thank you&lt;/a&gt; | &lt;a href=&#39;/payments?status=shipped&amp;key=$i.invoice_key&#39;&gt;shipped&lt;/a&gt; | &lt;a href=&#39;/payments?status=paynotice&amp;key=$i.invoice_key&#39;&gt;payment notice&lt;/a&gt; | &lt;a href=&#39;/payments?status=remove&amp;key=$i.invoice_key&#39;&gt;remove&lt;/a&gt;
     49 <a href="#l31" class="line" id="l31">     31</a>     &lt;/pre&gt;
     50 <a href="#l32" class="line" id="l32">     32</a> &lt;/table&gt;
     51 <a href="#l33" class="line" id="l33">     33</a> 
     52 </pre>
     53 </div>
     54 </body>
     55 </html>