diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-03-14 10:46:44 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-03-14 10:46:44 +0000 |
commit | 3476d694227b0fb6db8e3c45f55b912a358d1a6d (patch) | |
tree | bbdb5e155f88c85e56b7e8caac5d4e9f8912c174 /templates/tag2tagedit.tpl.php | |
parent | 219888d4899fa1704452ed7169b718f6766aaa07 (diff) | |
download | semanticscuttle-3476d694227b0fb6db8e3c45f55b912a358d1a6d.tar.gz semanticscuttle-3476d694227b0fb6db8e3c45f55b912a358d1a6d.tar.bz2 |
Interface design: improve tag2tag link edition (add item in Actions menu and improve tag2tagedit page)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@81 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/tag2tagedit.tpl.php')
-rw-r--r-- | templates/tag2tagedit.tpl.php | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/templates/tag2tagedit.tpl.php b/templates/tag2tagedit.tpl.php index 4e5850b..740a654 100644 --- a/templates/tag2tagedit.tpl.php +++ b/templates/tag2tagedit.tpl.php @@ -2,17 +2,19 @@ $this->includeTemplate($GLOBALS['top_include']); ?> -<form action="<?= $formaddaction ?>" method="post"> -<p><?php echo T_('Create new link')?></p> +<form action="<?= $formdeleteaction ?>" method="post"> +<p><?php echo T_('Delete the link')?></p> +<!--input type="hidden" name="tag1" value="<?php echo $tag1 ?>" /> +<input type="hidden" name="tag2" value="<?php echo $tag2 ?>" /--> <p> <input type="text" name="tag1" value="<?php echo $tag1 ?>"/> <input type="text" name="linkType" value=">" size="1" maxlength="1"/> -<input type="text" name="tag2" /> +<input type="text" name="tag2" value="<?php echo $tag2 ?>"/> </p> -<!--p><?php echo T_('Are you sure?'); ?></p--> +<p><?php echo T_('Are you sure?'); ?></p> <p> - <input type="submit" name="confirm" value="<?php echo T_('Create'); ?>" /> - <input type="submit" name="cancel" value="<?php echo T_('Cancel'); ?>" /> + <input type="submit" name="confirm" value="<?php echo T_('Yes'); ?>" /> + <input type="submit" name="cancel" value="<?php echo T_('No'); ?>" /> </p> <?php if (isset($referrer)): ?> @@ -23,19 +25,17 @@ $this->includeTemplate($GLOBALS['top_include']); <hr /> -<form action="<?= $formdeleteaction ?>" method="post"> -<p><?php echo T_('Delete the link')?></p> -<!--input type="hidden" name="tag1" value="<?php echo $tag1 ?>" /> -<input type="hidden" name="tag2" value="<?php echo $tag2 ?>" /--> +<form action="<?= $formaddaction ?>" method="post"> +<p><?php echo T_('Create new link')?></p> <p> <input type="text" name="tag1" value="<?php echo $tag1 ?>"/> <input type="text" name="linkType" value=">" size="1" maxlength="1"/> -<input type="text" name="tag2" value="<?php echo $tag2 ?>"/> +<input type="text" name="tag2" /> </p> -<p><?php echo T_('Are you sure?'); ?></p> +<!--p><?php echo T_('Are you sure?'); ?></p--> <p> - <input type="submit" name="confirm" value="<?php echo T_('Yes'); ?>" /> - <input type="submit" name="cancel" value="<?php echo T_('No'); ?>" /> + <input type="submit" name="confirm" value="<?php echo T_('Create'); ?>" /> + <input type="submit" name="cancel" value="<?php echo T_('Cancel'); ?>" /> </p> <?php if (isset($referrer)): ?> |