怎样删除dedecms默认模板首页投票调查

      最近用dedecms默认模板做的站,觉的首页的投票调查没什么用,所以就想删除,但在后台模块管理中卸载、删除,之后生成网页,投票模块还是存在,后来在网上查了一下,发现正确的流程是还需要删除模版中的投票模块的代码,流程如下:
1、先去dedecms后台-模块-模块管理-投票模块卸载-然后再删除
  
2、之后dedecms后台-模板-默认模板管理-index.html-删除如下代码
  
  <div class="vote mt1">
  
  <dl class="tbox light">
  
  <dt class='light'><strong>投票调查</strong></dt>
  
  <form name='voteform' method='post' action='{dede:global.cfg_cmsurl/}/plus/vote.php' target='_blank'>
  
  <input type='hidden' name='dopost' value='send' />
  
  <input type='hidden' name='aid' value='1' />
  
  <input type='hidden' name='ismore' value='0' />
  
  <dd class='light'> <strong>你是从哪儿得知本站的?</strong>
  
  <div class="fb">
  
  <input type="radio" name='voteitem' value='1' />
  
  朋友介绍</div>
  
  <div class="fb">
  
  <input type="radio" name='voteitem' value='2' />
  
  门户网站的搜索引擎</div>
  
  <div class="fb">
  
  <input type="radio" name='voteitem' value='3' />
  
  google或百度引擎</div>
  
  <div class="fb">
  
  <input type="radio" name='voteitem' value='4' />
  
  别的网站上的链接</div>
  
  <div class="fb">
  
  <input type="radio" name='voteitem' value='5' />
  
  其他途径</div>
  
  <div class="submit">
  
  <button type="submit" class="btn-1">投票</button>
  
  <a href="plus/vote.php?dopost=view&aid=1">查看结果</a></div>
  
  </dd>
  
  </form>
  
  </dl>
  
  </div>
  
  <!-- /vote -->
3、生成网站,投票模块就没有了。