This commit is contained in:
2024-12-28 00:07:12 -05:00
parent dfeb478a72
commit 69db561a0c
9 changed files with 222 additions and 258 deletions

View File

@@ -12,25 +12,28 @@
<img class="qrcode-image" id="QRCodeImage" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8/wcAAgMBAAeWBjwAAAAASUVORK5CYII=" />
</div>
</div>
<form id="editor">
<div id="server-response">Server Ready</div>
<table border="1">
<tr>
<th>Ticket#</th>
<th>Offered To</th>
<th>Action</th>
</tr>
<% for (const t in tickets) { %>
<div class="content">
<form id="editor">
<div id="server-response">Server Ready</div>
Tickets owned by <%=username%>
<table border="1">
<tr>
<th>Ticket#</th>
<th>Offered To</th>
<th>Action</th>
</tr>
<% for (const t in tickets) { %>
<tr>
<td><%=t%></td>
<td><input type="edit" value="<%=tickets[t].offered%>" id="<%=t%>-offered"></td>
<td><button id="<%=t%>-action" type="button"> QRCode </button></td>
</tr>
<% } %>
<tr>
</tr>
</table>
</form>
<% } %>
<tr>
</tr>
</table>
</form>
</div>
<script>