diff options
| author | wjames5 <will@tekimaki.com> | 2007-09-07 19:12:14 +0000 |
|---|---|---|
| committer | wjames5 <will@tekimaki.com> | 2007-09-07 19:12:14 +0000 |
| commit | a81dbfb279629e89cf7c831c1ad4dc603bd17139 (patch) | |
| tree | d033ba2f156c5fbe4d56f89a4054f784f74c1b30 /templates | |
| parent | ae4e57ea7cb7ca5080ab399435f861f6a9b6955e (diff) | |
| download | tags-a81dbfb279629e89cf7c831c1ad4dc603bd17139.tar.gz tags-a81dbfb279629e89cf7c831c1ad4dc603bd17139.tar.bz2 tags-a81dbfb279629e89cf7c831c1ad4dc603bd17139.zip | |
exclude Drop Tags quick edit options from content editing service, as it nests a form within a form - add note to use drop tag feature available when viewing content
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/edit_tags.tpl | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/templates/edit_tags.tpl b/templates/edit_tags.tpl index 8d7dadc..57257fa 100644 --- a/templates/edit_tags.tpl +++ b/templates/edit_tags.tpl @@ -7,8 +7,17 @@ {formhelp note="Enter key words to describe your content. Separate each tag with a comma: , . Tag wisely, tag efficiently."} {/forminput} </div> - {forminput} - {include file='bitpackage:tags/view_tags_mini_inc.tpl' tagData=$tagData} - {/forminput} + {if count($tagData) > 0 } + <div class="row tags"> + {forminput} + <strong>{tr}Existing Tags:{/tr}</strong> + {section name=tag loop=$tagData} + {if $smarty.section.tag.index > 0}, {/if} + <a href="{$smarty.const.TAGS_PKG_URL}index.php?tags={$tagData[tag].tag}">{$tagData[tag].tag}</a> + {/section} + {formhelp note="NOTE: To remove tags use the \"Drop Tag\" options that are available when just viewing this content."} + {/forminput} + </div> + {/if} {/if} {/strip} |
