authtoken.handlebars 793 B

1234567891011121314151617181920212223242526
  1. <tr data-id="{{id}}">
  2. <td class="client">
  3. <div class="{{icon}}" />
  4. </td>
  5. <td class="token-name">
  6. {{name}}
  7. </td>
  8. <td>
  9. <span class="last-activity has-tooltip" title="{{lastActivityTime}}">{{lastActivity}}</span></td>
  10. <td class="more">
  11. {{#if showMore}}<a class="icon icon-more has-tooltip" tabindex="0" title="{{settingsTitle}}"/>{{/if}}
  12. <div class="popovermenu menu">
  13. {{#if canScope}}
  14. <li><span class="menuitem">
  15. <input class="filesystem checkbox" type="checkbox" id="{{id}}_filesystem" {{#if scope.filesystem}}checked{{/if}} tabindex="0" />
  16. <label for="{{id}}_filesystem">{{allowFSAccess}}</label><br/>
  17. </span></li>
  18. {{/if}}
  19. {{#if canDelete}}
  20. <li>
  21. <a class="icon icon-delete" tabindex="0">{{revokeText}}</a>
  22. </li>
  23. {{/if}}
  24. </div>
  25. </td>
  26. </tr>