Last Sync: <%= new Intl.DateTimeFormat('en-GB', {day: "numeric", month: "numeric", hour: "numeric", minute: "numeric", hour12: false}).format(new Date(updated)) %>
Sync Vouchers
No vouchers
Get started by creating a new voucher.
-
<% vouchers.forEach((voucher) => { %>
-
Remove Voucher Code<%= voucher.code.slice(0, 5) %>-<%= voucher.code.slice(5) %> <% if (voucher.expired) { %>Expired<% } else {%> <% if(voucher.authorizedGuestCount > 0) { %>In Use<% } else { %>Available<% } %> <% } %> <% if (voucher.name && notesConvert(voucher.name).note) { %><%= notesConvert(voucher.name).note %><% } %>
<%= !voucher.authorizedGuestLimit ? 'Multi-use (Unlimited)' : voucher.authorizedGuestLimit === 1 ? 'Single-use' : `Multi-use (${voucher.authorizedGuestLimit}x)` %>
<%= timeConvert(voucher.timeLimitMinutes) %>
<% if(voucher.dataUsageLimitMBytes) { %><%= bytesConvert(voucher.dataUsageLimitMBytes, 2) %> Data Limit
<% } %> <% if(voucher.rxRateLimitKbps) { %><%= bytesConvert(voucher.rxRateLimitKbps, 1, true) %> Download Limit
<% } %> <% if(voucher.txRateLimitKbps) { %><%= bytesConvert(voucher.txRateLimitKbps, 1, true) %> Upload Limit
<% } %>
<% }); %>