aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/tokens.php10
1 files changed, 7 insertions, 3 deletions
diff --git a/templates/tokens.php b/templates/tokens.php
index 7707516..48e5998 100644
--- a/templates/tokens.php
+++ b/templates/tokens.php
@@ -11,7 +11,6 @@
<th>Token</th>
<th>Client</th>
<th>Last use</th>
- <th>Actions</th>
</tr>
</thead>
<tbody>
@@ -19,8 +18,13 @@
<tr>
<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(\OCP\Util::formatDate($token->lastuse)); ?>
+ <form method="POST" action="<?php p(OCP\Util::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"/>
+ </form>
+ </td>
</tr>
<?php } ?>
</tbody>