<% if (ctx.tokens.length > 0) { %>
<% _.each(ctx.tokens, function(token, index) { %>
Token:
Note:
Created:
Expires:
Last used:
<%= token.token %>
<% if (token.note !== null) { %> <%= token.note %> <% } else { %> No note <% } %> (change)
<%= ctx.makeRelativeTime(token.creationTime) %>
<% if (token.expirationTime) { %> <%= ctx.makeRelativeTime(token.expirationTime) %> <% } else { %> No expiration <% } %>
<%= ctx.makeRelativeTime(token.lastUsageTime) %>
<% if (token.isCurrentAuthToken) { %> <% } else { %> <% } %>

<% }); %>
<% } else { %>

No Registered Tokens

<% } %>