First version with credit card integration and UI
This commit is contained in:
@@ -22,14 +22,16 @@
|
||||
<th>Ticket#</th>
|
||||
<th>Owner</th>
|
||||
<th>Offered To</th>
|
||||
<th>Paid?</th>
|
||||
<th>Status</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="owner" value="<%=tickets[t].owner%>" name="<%=t%>-owner"> </td>
|
||||
<td><input type="text" class="offered" value="<%=tickets[t].offered%>" name="<%=t%>-offered"></td>
|
||||
<td><%=tickets[t].paid>0 ? (tickets[t].paid/100).toFixed(2) : "No"%>
|
||||
<td>
|
||||
<select class="status" name="<%=t%>-status">
|
||||
<option value="i"<%=tickets[t].status=="i" ? " selected" : ""%>>Issued</option>
|
||||
|
||||
Reference in New Issue
Block a user