1<!-- Tag Widget -->
2<?php echo $this->render('begin'); ?>
3<div id="tags">
4<?php if (!empty($this->error_text)): ?>
5  <?php echo $this->error_text; ?>
6<?php else: ?>
7  <?php echo $this->tag_html ?>
8  <?php if (!empty($this->have_edit)): ?>
9    <form name="tagform" action="<?php echo $this->action_url?>" onsubmit="return AnselTagActions.submitcheck();" method="post">
10      <input id="actionID" name="actionID" type="hidden" value="addTags" />
11      <input id="addtag" name="addtag" type="text" size="15" /> <input name="tagbutton" id="tagbutton" class="button" value="<?php echo _("Add")?>" type="submit" />
12    </form>
13  <?php endif; ?>
14<?php endif; ?>
15</div>
16<?php echo $this->render('end'); ?>
17<!-- End Tag Widget -->