Can't use company_list.tpl code in other places?

Hi,



I was just trying to use the company_list.tpl’s code:

<br />
{** block-description:comapnies.view **}<br />
{assign var="max" value=""}<br />
<br />
{if $items.companies}<br />
<ul class="text-links"><br />
{foreach from=$items.companies item=v key=k}<br />
  <li><a href="{"companies.view?company_id=`$k`"|fn_url}">{$v}</a></li><br />
{/foreach}<br />
</ul><br />
{if $items.companies|count < $items.count}<br />
  <p class="right"><br />
   <a class="extra-link" href="{"companies.catalog"|fn_url}">{$lang.view_all}</a><br />
  </p><br />
{/if}<br />
{/if}<br />

```<br />
<br />
In my custom view called new_view/view.tpl<br />
<br />
But it is not working?<br />
<br />
Please explain or give a solutions to this issue.