diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-03 13:28:48 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-03 13:28:48 +0000 |
commit | 0564d64de2ea6838e7a874da5e99fa5358a0f75f (patch) | |
tree | ae678c3e6bda751168d5c896b5f472f5db983bc6 /templates | |
parent | 96728fd633b0462b9a7605aae33eba2d1ad827b6 (diff) | |
download | semanticscuttle-0564d64de2ea6838e7a874da5e99fa5358a0f75f.tar.gz semanticscuttle-0564d64de2ea6838e7a874da5e99fa5358a0f75f.tar.bz2 |
Interface design: add export option through API into the profile page
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@94 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates')
-rw-r--r-- | templates/editprofile.tpl.php | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/templates/editprofile.tpl.php b/templates/editprofile.tpl.php index ebfc972..d84fac5 100644 --- a/templates/editprofile.tpl.php +++ b/templates/editprofile.tpl.php @@ -4,6 +4,17 @@ $this->includeTemplate($GLOBALS['top_include']); <form action="<?php echo $formaction; ?>" method="post"> +<h3><?php echo T_('Actions'); ?></h3> +<table class="profile"> +<tr> + <th align="left"><?php echo T_('Export'); ?></th> + <td> + <a href="../api/posts/all"><?php echo T_('All bookmarks')?></a> + <?php echo ' ← '.T_('Del.icio.us-like API')?> + </td> +</tr> +</table> + <h3><?php echo T_('Account Details'); ?></h3> <table class="profile"> @@ -53,4 +64,4 @@ $this->includeTemplate($GLOBALS['top_include']); <?php $this->includeTemplate($GLOBALS['bottom_include']); -?>
\ No newline at end of file +?> |