Link to maintainership/funding post
[grauphel.git] / templates / tokens.php
index 770751637f9580824a9375aab9c1578358d2004b..9d812ebe52e7a8e1c7d5636c589eb7c56db9e455 100644 (file)
@@ -1,26 +1,40 @@
-<link rel="stylesheet" href="<?php p(OCP\Util::linkTo('grauphel','grauphel.css')); ?>" type="text/css"/>
+<?php style('grauphel', 'grauphel'); ?>
+<?php script('grauphel', 'grauphel'); ?>
 
 <?php /** @var $l OC_L10N */ ?>
 <?php $_['appNavigation']->printPage(); ?>
 
 <div id="app-content" class="list">
+  <div id="searchresults" class="hidden"></div>
   <h1>Manage access tokens</h1>
-  <table class="table">
+  <p>
+    Here you see which applications have access to the notes.
+    You can permanently revoke access by clicking the "delete" icon on the right
+    side of each token row.
+  </p>
+  <table class="table" id="grauphel-tokens">
    <thead>
     <tr>
      <th>Token</th>
      <th>Client</th>
      <th>Last use</th>
-     <th>Actions</th>
     </tr>
    </thead>
    <tbody>
     <?php foreach ($_['tokens'] as $token) { ?>
-      <tr>
+      <tr id="token-<?php p($token->tokenKey); ?>">
        <td><?php p($token->tokenKey); ?></td>
        <td title="<?php p($token->client); ?>"><?php p($_['client']->getNiceName($token->client)); ?></td>
-       <td><?php p(\OCP\Util::formatDate($token->lastuse)); ?></td>
-       <td>Disable Delete</td>
+       <td>
+        <?php p($_['date']->formatDate($token->lastuse)); ?>
+        <form method="POST" action="<?php p(OC::$server->getURLGenerator()->linkToRoute('grauphel.token.delete', array('username' => $_['username'], 'tokenKey' => $token->tokenKey))); ?>">
+           <input type="hidden" name="delete" value="1" />
+           <button type="submit" class="icon-delete delete action"
+                   original-title="Delete"
+                   data-token="token-<?php p($token->tokenKey); ?>"
+           />
+        </form>
+       </td>
       </tr>
     <?php } ?>
    </tbody>