First version with credit card integration and UI
This commit is contained in:
@@ -20,12 +20,14 @@
|
||||
<tr>
|
||||
<th>Ticket#</th>
|
||||
<th>Offered To</th>
|
||||
<th>Paid?</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
<% for (const t in tickets) { %>
|
||||
<tr>
|
||||
<td><%=t%></td>
|
||||
<td><a href="oneticket?t=<%=t%>"><%=t%></a></td>
|
||||
<td><input type="text" class="offered" value="<%=tickets[t].offered%>" name="<%=t%>"></td>
|
||||
<td><%=tickets[t].paid>0 ? (tickets[t].paid/100).toFixed(2) : "No"%>
|
||||
<td><button id="<%=t%>-action" type="button"> QRCode </button></td>
|
||||
</tr>
|
||||
<% } %>
|
||||
|
||||
Reference in New Issue
Block a user