Вывод групп и подгрупп товаров в магазине до последнего уровня вложенности

#
Вывод групп и подгрупп товаров в магазине до последнего уровня вложенности
Не получается реализовать такой вывод - выводятся только группы, а надо что бы выводило все и подгруппа с товарами отображалась ссылкой...
Подскажите плзь...



<?xml version="1.0" encoding="windows-1251"?>
<!DOCTYPE xsl:stylesheet>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:output xmlns="http://www.w3.org/TR/xhtml1/strict" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" encoding="Windows-1251" indent="yes" method="html" omit-xml-declaration="no" version="1.0" media-type="text/xml"/>
   
   <xsl:decimal-format name="my" decimal-separator="," grouping-separator=" "/>
   
   <xsl:template match="/">
      <xsl:apply-templates select="/shop"/>
   </xsl:template>
   
   <!-- Шаблон для магазина -->
   <xsl:template match="/shop">
      
      <!-- Получаем ID родительской группы и записываем в переменную $parent_group_id -->
      <xsl:variable name="parent_group_id" select="@current_group_id"/>
      
      
      <xsl:variable name="count">1</xsl:variable>
      
      
      
      
      <xsl:if test="count(item) &gt; 0  or apply_filter = 1 or property_xml != ''">
         <div class="filter">
            <div class="fil_b">
               <form method="get" action="{/shop/path}{//group[@id=$parent_group_id]/fullpath}">
                  <!-- <div class="col"> -->
                     
                     <!-- <b>Фильтр по дополнительным свойствам товара:</b> -->
                     <xsl:if test="count(properties_for_group/property[property_show_kind != 0 and (shop_list_of_properties_type = 0 or shop_list_of_properties_type = 2 or shop_list_of_properties_type = 7)]) &gt; 0">
                        <div class="col">
                           <b>Раздел стоматологии:</b>
                           <ul>
                              <xsl:apply-templates select="properties_for_group/property" mode="checkbox_one"/>
                           </ul>
                        </div>
                     </xsl:if>
                     <xsl:if test="count(properties_for_group/property[property_show_kind != 0 and (shop_list_of_properties_type = 0 or shop_list_of_properties_type = 2 or shop_list_of_properties_type = 7)]) &gt; 0">
                        <div class="col">
                           <b>Группы товаров:</b>
                           <ul>
                              <xsl:apply-templates select="properties_for_group/property" mode="checkbox_two"/>
                           </ul>
                        </div>
                     </xsl:if>
                     <!--    <xsl:if test="count(properties_for_group/property[property_show_kind != 0 and (shop_list_of_properties_type = 0 or shop_list_of_properties_type = 2 or shop_list_of_properties_type = 7)]) &gt; 0">
                        <div class="col">
                           <b>Производитель:</b>
                           <ul>
                              <xsl:apply-templates select="properties_for_group/property" mode="producer"/>
                           </ul>
                        </div>
                     </xsl:if> -->
                     <!-- <xsl:if test="count(properties_for_group/property[property_show_kind != 0 and (shop_list_of_properties_type = 0 or shop_list_of_properties_type = 2 or shop_list_of_properties_type = 7)]) &gt; 0">
                        <div class="col1">
                           <b>Производитель:</b>
                           <u><a class="cu_ac" title="все производители" href="#">все производители</a>
                           <a title="сменить производителя" href="#">сменить производителя</a></u>
                           <ul>
                              <xsl:apply-templates select="properties_for_group/property" mode="checkbox_three"/>
                           </ul>
                        </div>
                     </xsl:if> -->
                     <xsl:if test="count(properties_for_group/property[property_show_kind != 0 and (shop_list_of_properties_type = 0 or shop_list_of_properties_type = 2 or shop_list_of_properties_type = 7)]) &gt; 0">
                        <div class="col1">
                           <b>Производитель:</b>
                           <!-- <xsl:apply-templates select="properties_for_group/property[property_show_kind != 0 and (shop_list_of_properties_type = 0 or shop_list_of_properties_type = 2 or shop_list_of_properties_type = 7)]" mode="producer"/> -->
                           <xsl:apply-templates select="properties_for_group/property" mode="producer"/>
                        </div>
                     </xsl:if>
                     
                     <!-- Если есть доступные производители -->
                     <!-- <xsl:if test="count(producerslist/producer) > 0">
                        Производитель:&#xA0;
                        <select name="producer_id">
                           <option value="0">&#x2026;</option>
                           <xsl:apply-templates select="producerslist/producer"/>
                        </select>&#xA0;
                     </xsl:if> -->
                     
                     <!-- Если есть доступные продавцы -->
                     <!-- <xsl:if test="count(sallers/saller) > 0">
                        Продавец:&#xA0;
                        <select name="saller_id">
                           <option value="0">&#x2026;</option>
                           <xsl:apply-templates select="sallers/saller"/>
                        </select>&#xA0;
                     </xsl:if> -->
                     
                     <!-- Цена от:&#xA0;
                     <input name="price_from" size="5" type="text">
                        <xsl:if test="/shop/price_from != 0">
                           <xsl:attribute name="value">
                              <xsl:value-of disable-output-escaping="yes" select="/shop/price_from"/>
                           </xsl:attribute>
                        </xsl:if>
                     </input>&#xA0;
                     
                     до:&#xA0;
                     <input name="price_to" size="5" type="text">
                        <xsl:if test="/shop/price_to != 0">
                           <xsl:attribute name="value">
                              <xsl:value-of disable-output-escaping="yes" select="/shop/price_to"/>
                           </xsl:attribute>
                        </xsl:if>
                     </input>&#xA0;
                     -->
                     <div class="col1">
                        <b>Показывать по:</b>
                        
                        <select class="slt" name="on_page">
                           <option value="0">&#x2026;</option>
                           <xsl:call-template name="for_on_page">
                              <xsl:with-param name="i" select="10"/>
                              <xsl:with-param name="n" select="50"/>
                           </xsl:call-template>
                        </select>
                        
                        <input name="apply_filter" value="" type="submit" class="btn"/>
                        
                     </div>
                     
                     
                     
                     
                     <!-- </div> -->
               </form>
            </div>
         </div>
         
         <!-- Отображение подгрупп данной группы, только если подгруппы есть и не идет фильтра по меткам -->
         <xsl:if test="count(selected_tags/tag) = 0 and count(//group[@parent=$parent_group_id]) &gt; 0">
            <ul style="list-style: none;padding-top:10px">
               <xsl:apply-templates select="group[@parent=$parent_group_id]"/>
            </ul>
         </xsl:if>
         
         
         
         
         <xsl:if test="$parent_group_id!=0">
            <ul class="catalog">
               <xsl:apply-templates select="item" />
            </ul>
         </xsl:if>
         
         
         <xsl:if test="count(/shop/group[@id = /shop/@current_group_id]/propertys/property) > 0">
            <div style="margin: 10px 0px;">
               <h2>Атрибуты группы товаров</h2>
               
               <xsl:if test="count(property[@dir_id = 0])">
                  <table border="0">
                     <xsl:apply-templates select="property[@dir_id = 0]"/>
                  </table>
               </xsl:if>
               
               <xsl:apply-templates select="/shop/properties_groups_dir"/>
            </div>
         </xsl:if>
         
         <xsl:if test="count_items &gt; 0 and items_on_page &gt; 0 and $parent_group_id!=0">
            <div class="pages">
               <xsl:call-template name="for">
                  <xsl:with-param name="items_on_page" select="items_on_page"/>
                  <xsl:with-param name="current_page" select="current_page"/>
                  <xsl:with-param name="count_items" select="count_items"/>
                  <xsl:with-param name="visible_pages" select="5"/>
               </xsl:call-template>
            </div>
         </xsl:if>
         
      </xsl:if>
      
      
      
      
   </xsl:template>
   
   
   <!-- Шаблон для групп товара -->
   <xsl:template match="group">
      <b><xsl:value-of disable-output-escaping="yes" select="name"/></b>
      
      <ul>
         <xsl:apply-templates select="group" mode="subgroup" />
      </ul>
   </xsl:template>
   
   <!-- Шаблон для ПОДгрупп товара -->
   <xsl:template match="group" mode="subgroup">
      <li>
         <a href="{/shop/path}{fullpath}"><xsl:value-of disable-output-escaping="yes" select="name"/></a>
      </li>
      
      
   </xsl:template>
   
   <!-- Шаблон для подразделов -->
   <xsl:template match="group" mode="one">
      
      <xsl:variable name="parent_id" select="@parent"/>
      
      <li style="margin-left:10px">
         <xsl:choose>
            <xsl:when test="count_items!=0">
               <a href="{/shop/path}{fullpath}">
                  <xsl:value-of disable-output-escaping="yes" select="name"/>
               </a>
            </xsl:when>
            <xsl:otherwise>
               <xsl:value-of disable-output-escaping="yes" select="name"/>
            </xsl:otherwise>
         </xsl:choose>
         
         
         
         <!-- <xsl:if test="count(group) &gt; 1"> -->
            <ul style="list-style: none; margin-left:10px">
               <xsl:apply-templates select="group" mode="two"/>
            </ul>
            <!-- </xsl:if> -->
      </li>
      
   </xsl:template>
   
   <!-- Шаблон для подразделов -->
   <xsl:template match="group" mode="two">
      
      <xsl:variable name="parent_id" select="@parent"/>
      
      <li style="margin-left:10px">
         <xsl:choose>
            <xsl:when test="count_items!=0">
               <a href="{/shop/path}{fullpath}">
                  <xsl:value-of disable-output-escaping="yes" select="name"/>
               </a>
            </xsl:when>
            <xsl:otherwise>
               <xsl:value-of disable-output-escaping="yes" select="name"/>
            </xsl:otherwise>
         </xsl:choose>
         
         
         <xsl:if test="count(group) &gt; 1">
            <ul style="list-style: none; margin-left:10px">
               <xsl:apply-templates select="group" mode="three"/>
            </ul>
         </xsl:if>
      </li>
      
   </xsl:template>
   
   <!-- Шаблон для подразделов -->
   <xsl:template match="group" mode="three">
      
      <xsl:variable name="parent_id" select="@parent"/>
      
      <li style="margin-left:10px">
         <xsl:choose>
            <xsl:when test="count_items!=0">
               <a href="{/shop/path}{fullpath}">
                  <xsl:value-of disable-output-escaping="yes" select="name"/>
               </a>
            </xsl:when>
            <xsl:otherwise>
               <xsl:value-of disable-output-escaping="yes" select="name"/>
            </xsl:otherwise>
         </xsl:choose>
         
         
         <xsl:if test="count(group) &gt; 1">
            <ul style="list-style: none; margin-left:10px">
               <xsl:apply-templates select="group" mode="four"/>
            </ul>
         </xsl:if>
      </li>
      
   </xsl:template>
   
   <!-- Шаблон для подразделов -->
   <xsl:template match="group" mode="four">
      
      <xsl:variable name="parent_id" select="@parent"/>
      
      <li style="margin-left:10px">
         <xsl:choose>
            <xsl:when test="count_items!=0">
               <a href="{/shop/path}{fullpath}">
                  <xsl:value-of disable-output-escaping="yes" select="name"/>
               </a>
            </xsl:when>
            <xsl:otherwise>
               <xsl:value-of disable-output-escaping="yes" select="name"/>
            </xsl:otherwise>
         </xsl:choose>
         
         
         <xsl:if test="count(group) &gt; 1">
            <ul style="list-style: none; margin-left:10px">
               <xsl:apply-templates select="group" mode="five"/>
            </ul>
         </xsl:if>
      </li>
      
   </xsl:template>
   
   <!-- Вывод раздела для свойств группы товаров -->
   <xsl:template match="properties_groups_dir">
      
   <p><b><xsl:value-of select="shop_properties_groups_dir_name"/></b></p>
      
      <xsl:variable name="dir_id" select="@id"/>
      
      <xsl:if test="count(/shop/group[@id = /shop/@current_group_id]/propertys/property)">
         <table border="0">
            <xsl:apply-templates select="/shop/group[@id = /shop/@current_group_id]/propertys/property[@parent_id = $dir_id]"/>
         </table>
      </xsl:if>
      
      <xsl:if test="count(properties_groups_dir)">
         <blockquote>
            <xsl:apply-templates select="properties_groups_dir"/>
         </blockquote>
      </xsl:if>
   </xsl:template>
   
   <!-- Вывод строки со значением свойства -->
   <xsl:template match="property">
      <tr>
         <td style="padding: 5px" bgcolor="#E5DFDA">
            <b><xsl:value-of select="name"/></b>
         </td>
         <td style="padding: 5px" bgcolor="#E5DFDA">
            <xsl:choose>
               <xsl:when test="type = 1">
                  <a href="{file_path}">Скачать файл</a>
               </xsl:when>
               <xsl:when test="type = 7">
                  <xsl:choose>
                     <xsl:when test="value = 1">
                        <input type="checkbox" checked="" disabled="" />
                     </xsl:when>
                     <xsl:otherwise>
                        <input type="checkbox" disabled="" />
                     </xsl:otherwise>
                  </xsl:choose>
               </xsl:when>
               <xsl:otherwise>
                  <xsl:value-of disable-output-escaping="yes" select="value"/>
               </xsl:otherwise>
            </xsl:choose>
         </td>
      </tr>
   </xsl:template>
   
   <!-- Шаблон для списка товаров для сравнения -->
   <xsl:template match="compare_items/compare_item">
      <xsl:variable name="var_compare_id" select="."/>
      <tr>
         <td>
            <input type="checkbox" name="del_compare_id_{compare_item_id}" id="id_del_compare_id_{compare_item_id}"/>
         </td>
         <td>
            <a href="{/shop/path}{compare_item_fullpath}{compare_item_path}/">
               <xsl:value-of disable-output-escaping="yes" select="compare_item_name"/>
            </a>
         </td>
      </tr>
   </xsl:template>
   
   <!-- Шаблон для фильтра производителей -->
   <xsl:template match="producerslist/producer">
      
      <xsl:param name="id_prod" select="@id"/>
      <!--
      <xsl:variable name="node_name" select="concat('производители', $id_prod)"/>
      
      <xsl:if test="count(/shop/*[name() = $node_name])">
         -->
         
         <option value="{@id}">
            <xsl:if test="@id = /shop/producer_id">
               <xsl:attribute name="selected"> </xsl:attribute>
            </xsl:if>
            <xsl:value-of disable-output-escaping="yes" select="name"/>
         </option>
         <!--
      </xsl:if>
      -->
      
   </xsl:template>
   
   <!-- Шаблон для фильтра продавцов -->
   <xsl:template match="sallers/saller">
      <option value="{@id}">
         <xsl:if test="@id = /shop/saller_id">
            <xsl:attribute name="selected">
            </xsl:attribute>
         </xsl:if>
         <xsl:value-of select="sallers_name"/>
      </option>
   </xsl:template>
   
   <!-- Шаблон для фильтра по дополнительным свойствам -->
   <xsl:template match="properties_for_group/property">
      
      <xsl:variable name="nodename">property_id_<xsl:value-of select="@id"/></xsl:variable>
      
      <xsl:variable name="nodename_from">property_id_<xsl:value-of select="@id"/>_from</xsl:variable>
      <xsl:variable name="nodename_to">property_id_<xsl:value-of select="@id"/>_to</xsl:variable>
      
      
      <!-- <td> -->
         
         
         
         
         <!--
         <label for="property_id_{@id}"><xsl:value-of disable-output-escaping="yes" select="property_name"/></label>&#xA0;
         -->
         <xsl:if test="property_show_kind = 1">
            <!-- Отображаем поле ввода -->
            <br/>
            <input type="text" name="property_id_{@id}">
               <xsl:if test="/shop/*[name()=$nodename] != ''">
                  <xsl:attribute name="value">
                     <xsl:value-of select="/shop/*[name()=$nodename]"/>
                  </xsl:attribute>
               </xsl:if>
            </input>
         </xsl:if>
         <xsl:if test="property_show_kind = 2">
            <!-- Отображаем список -->
            <br/>
            <select name="property_id_{@id}">
               <option value="0">...</option>-->
               <xsl:apply-templates select="list_items/list_item"/>
            </select>
         </xsl:if>
         <xsl:if test="property_show_kind = 3">
            <!-- Отображаем переключатели -->
            <br/>
            <input type="radio" name="property_id_{@id}" value="0" id="id_prop_radio_{@id}_0"></input>
            <label for="id_prop_radio_{@id}_0">Любой вариант</label>
            <xsl:apply-templates select="list_items/list_item"/>
         </xsl:if>
         
         <xsl:if test=" property_show_kind = 4">
            <!-- Отображаем флажки -->
            <xsl:apply-templates select="list_items/list_item"/>
         </xsl:if>
         
         <xsl:if test=" property_show_kind = 5">
            <!-- Отображаем флажок -->
            <!-- ##########################################
            <input type="checkbox" name="property_id_{@id}" id="property_id_{@id}" style="padding-top:4px">
               <xsl:if test="/shop/*[name()=$nodename] != ''">
                  <xsl:attribute name="checked">
                     <xsl:value-of select="/shop/*[name()=$nodename]"/>
                  </xsl:attribute>
               </xsl:if>
            </input>
            <label for="property_id_{@id}">Да</label>
            ############################################# -->
         </xsl:if>
         
         <xsl:if test=" property_show_kind = 6">
            <!-- Отображение полей "От.. До.." -->
            <br/>
            от: <input type="text" name="property_id_{@id}_from" size="5" value="{/shop/*[name()=$nodename_from]}"/> до: <input type="text" name="property_id_{@id}_to" size="5" value="{/shop/*[name()=$nodename_to]}"/>
         </xsl:if>
         
         <label for="property_id_{@id}"><xsl:value-of disable-output-escaping="yes" select="property_name"/></label>&#xA0;
         
         <!-- </td> -->
      <!-- <xsl:if test="position() mod 6 = 0">
         <xsl:text disable-output-escaping="yes">
            &lt;/tr&gt;
            &lt;tr valign="top"&gt;
         </xsl:text>
      </xsl:if> -->
   </xsl:template>
   
   <!-- Шаблон для фильтра по ЧЕКБОКСУ -->
   <xsl:template match="properties_for_group/property" mode="checkbox_one">
      
      <xsl:variable name="nodename">property_id_<xsl:value-of select="@id"/></xsl:variable>
      
      <xsl:variable name="nodename_from">property_id_<xsl:value-of select="@id"/>_from</xsl:variable>
      <xsl:variable name="nodename_to">property_id_<xsl:value-of select="@id"/>_to</xsl:variable>
      
      <!-- Отображаем флажок -->
      <xsl:if test="@parent_id = 1 or @parent_id = 9">
         <li>
            <label>
               <input type="checkbox" name="property_id_{@id}" id="property_id_{@id}" style="padding-top:4px">
                  <xsl:if test="/shop/*[name()=$nodename] != ''">
                     <xsl:attribute name="checked">
                        <xsl:value-of select="/shop/*[name()=$nodename]"/>
                     </xsl:attribute>
                  </xsl:if>
               </input>
               <!-- <label for="property_id_{@id}">Да</label> -->
               
               <xsl:value-of disable-output-escaping="yes" select="property_name"/></label>&#xA0;
         </li>
      </xsl:if>
      
   </xsl:template>
   
   <!-- Шаблон для фильтра по ЧЕКБОКСУ -->
   <xsl:template match="properties_for_group/property" mode="checkbox_two">
      
      <xsl:variable name="nodename">property_id_<xsl:value-of select="@id"/></xsl:variable>
      
      <xsl:variable name="nodename_from">property_id_<xsl:value-of select="@id"/>_from</xsl:variable>
      <xsl:variable name="nodename_to">property_id_<xsl:value-of select="@id"/>_to</xsl:variable>
      
      <!-- Отображаем флажок -->
      <xsl:if test="@parent_id = 2 or @parent_id = 10">
         <li>
            <label>
               <input type="checkbox" name="property_id_{@id}" id="property_id_{@id}" style="padding-top:4px">
                  <xsl:if test="/shop/*[name()=$nodename] != ''">
                     <xsl:attribute name="checked">
                        <xsl:value-of select="/shop/*[name()=$nodename]"/>
                     </xsl:attribute>
                  </xsl:if>
               </input>
               <!-- <label for="property_id_{@id}">Да</label> -->
               
               <xsl:value-of disable-output-escaping="yes" select="property_name"/></label>&#xA0;
         </li>
      </xsl:if>
      
   </xsl:template>
   
   <!-- Шаблон для фильтра по ЧЕКБОКСУ -->
   <xsl:template match="properties_for_group/property" mode="checkbox_three">
      
      <xsl:variable name="nodename">property_id_<xsl:value-of select="@id"/></xsl:variable>
      
      <xsl:variable name="nodename_from">property_id_<xsl:value-of select="@id"/>_from</xsl:variable>
      <xsl:variable name="nodename_to">property_id_<xsl:value-of select="@id"/>_to</xsl:variable>
      
      <!-- Отображаем флажок -->
      <xsl:if test="@parent_id = 3">
         <li>
            <label>
               <input type="checkbox" name="property_id_{@id}" id="property_id_{@id}" style="padding-top:4px">
                  <xsl:if test="/shop/*[name()=$nodename] != ''">
                     <xsl:attribute name="checked">
                        <xsl:value-of select="/shop/*[name()=$nodename]"/>
                     </xsl:attribute>
                  </xsl:if>
               </input>
               <!-- <label for="property_id_{@id}">Да</label> -->
               
               <xsl:value-of disable-output-escaping="yes" select="property_name"/></label>&#xA0;
         </li>
      </xsl:if>
      
   </xsl:template>
   
   <!-- Шаблон для фильтра по дополнительным свойствам -->
   <xsl:template match="properties_for_group/property" mode="producer">
      
      <xsl:variable name="nodename">property_id_<xsl:value-of select="@id"/></xsl:variable>
      
      <xsl:variable name="nodename_from">property_id_<xsl:value-of select="@id"/>_from</xsl:variable>
      <xsl:variable name="nodename_to">property_id_<xsl:value-of select="@id"/>_to</xsl:variable>
      
      <xsl:if test=" property_show_kind = 4">
         <!-- Отображаем флажки -->
         <u>
            <div style="float:left;">
               <xsl:apply-templates select="list_items/list_item" mode="producer"/>
               
               <xsl:choose>
                  <xsl:when  test="/shop/property_id_192 != '' or /shop/property_id_227 != ''">
                  </xsl:when>
                  <xsl:otherwise>
                     <a class="cu_ac" title="все производители" href="#">все производители</a>
                  </xsl:otherwise>
               </xsl:choose>
               
            </div>
            
            
            <div style="padding: 5px 0px;">&#160;</div>
            
            <!-- <div style="float:left;"> -->
               <div>
                  
                  <a title="сменить производителя" href="javascript:cr('cr_{@id}');">сменить производителя</a>
                  <!-- <a href="#testube" id="video" class="" title="сменить производителя">сменить производителя</a> -->
                  
                  <div id="cr_{@id}" style="display:none;">
                     <!-- <div style="display:none;" id="testube"> -->
                        <xsl:apply-templates select="list_items/list_item"/>
                        
                     </div>
                  </div>
                  
                  
               </u>
               
            </xsl:if>
            
         </xsl:template>
         
         <xsl:template match="list_items/list_item" mode="producer">
            
            <!-- <a class="cu_ac" title="все производители" href="#">все производители</a>
            <a title="сменить производителя" href="#">сменить производителя</a>
            -->
            
            <xsl:if test="../../property_show_kind = 4">
               <xsl:variable name="nodename">property_id_<xsl:value-of select="../../@id"/>_item_id_<xsl:value-of select="@id"/></xsl:variable>
               
               <xsl:if test="/shop/*[name()=$nodename] = @id">
                  <xsl:value-of disable-output-escaping="yes" select="list_item_value"/>
                  <xsl:if test="position() != last()">,&#xA0;</xsl:if>
               </xsl:if>
               
               
               
            </xsl:if>
            
         </xsl:template>
         
         <xsl:template match="list_items/list_item">
            <xsl:if test="../../property_show_kind = 2">
               <!-- Отображаем список -->
               <xsl:variable name="nodename">property_id_<xsl:value-of select="../../@id"/></xsl:variable>
               <option value="{@id}">
                  <xsl:if test="/shop/*[name()=$nodename] = @id">
                     <xsl:attribute name="selected">
                     </xsl:attribute>
                  </xsl:if>
                  <xsl:value-of disable-output-escaping="yes" select="list_item_value"/>
               </option>
            </xsl:if>
            <xsl:if test="../../property_show_kind = 3">
               <!-- Отображаем переключатели -->
               <xsl:variable name="nodename">property_id_<xsl:value-of select="../../@id"/></xsl:variable>
               <br/>
               <input type="radio" name="property_id_{../../@id}" value="{@id}" id="id_property_id_{../../@id}_{@id}">
                  <xsl:if test="/shop/*[name()=$nodename] = @id">
                     <xsl:attribute name="checked">checked</xsl:attribute>
                  </xsl:if>
                  <label for="id_property_id_{../../@id}_{@id}">
                     <xsl:value-of disable-output-escaping="yes" select="list_item_value"/>
                  </label>
               </input>
            </xsl:if>
            <xsl:if test="../../property_show_kind = 4">
               <!-- Отображаем флажки -->
               <xsl:variable name="nodename">property_id_<xsl:value-of select="../../@id"/>_item_id_<xsl:value-of select="@id"/></xsl:variable>
               <br/>
               <input type="checkbox" name="property_id_{../../@id}_item_id_{@id}" id="id_property_id_{../../@id}_{@id}">
                  <xsl:if test="/shop/*[name()=$nodename] = @id">
                     <xsl:attribute name="checked">checked</xsl:attribute>
                  </xsl:if>
                  <label for="id_property_id_{../../@id}_{@id}">
                     <xsl:value-of disable-output-escaping="yes" select="list_item_value"/>
                  </label>
               </input>
            </xsl:if>
         </xsl:template>
         
         <!-- Цикл с шагом 10 для select'a количества элементов на страницу -->
         <xsl:template name="for_on_page">
            <xsl:param name="i" select="0"/>
            <xsl:param name="n"/>
            
            <option value="{$i}">
               <xsl:if test="$i = /shop/on_page">
                  <xsl:attribute name="selected">
                  </xsl:attribute>
               </xsl:if>
               <xsl:value-of select="$i"/>
            </option>
            
            <xsl:if test="$n &gt; $i">
               <!-- Рекурсивный вызов шаблона -->
               <xsl:call-template name="for_on_page">
                  <xsl:with-param name="i" select="$i + 10"/>
                  <xsl:with-param name="n" select="$n"/>
               </xsl:call-template>
            </xsl:if>
         </xsl:template>
         
         
         <!-- Шаблон для товара -->
         <xsl:template match="item">
            
            
            <li>
               <h1>
                  <a href="{/shop/path}{fullpath}{path}/">
                     <xsl:value-of disable-output-escaping="yes" select="name"/>
                  </a>
               </h1>
               <span>
                  <a href="{/shop/path}{fullpath}{path}/">
                     <img src="{small_image}" alt="" />
                  </a>&#xA0;
                  <xsl:choose>
                     <xsl:when test="price_discount != 0">
                        <i style="float: left;">
                           <xsl:variable name="price" select="price_discount"/>
                           <xsl:value-of select="format-number($price, '### ###', 'my')"/>&#xA0;
                           <!-- Валюта товара -->
                           <xsl:value-of disable-output-escaping="yes" select="currency"/>
                        </i>
                     </xsl:when>
                     <xsl:otherwise>
                        <i>
                           Уточняйте цену
                        </i>
                     </xsl:otherwise>
                  </xsl:choose>
               </span>
               <p>
                  <xsl:value-of disable-output-escaping="yes" select="description"/><!-- substring(description, 1, 140) -->
               </p>
               <xsl:if test="type = 0 or (type = 1 and (eitem_count > 0 or eitem_count = -1))">
                  <input type="hidden" size="3" value="1" id="count_{@id}"/>
                  <a title="Добавить в  корзину" class="in_bkt" href="{/shop/path}cart/?action=add&amp;item_id={@id}" onclick="return AddIntoCart('{/shop/path}', {@id}, document.getElementById('count_{@id}').value)" style="font-weight:normal;">
                     Добавить в  корзину
                  </a>
               </xsl:if>
            </li>
            
         </xsl:template>
         
         
         <!-- Цикл для вывода строк ссылок -->
         <xsl:template name="for">
            <xsl:param name="i" select="0"/>
            <xsl:param name="items_on_page"/>
            <xsl:param name="current_page"/>
            <xsl:param name="count_items"/>
            <xsl:param name="visible_pages"/>
            
            <xsl:variable name="n" select="ceiling($count_items div $items_on_page)"/>
            
            <!-- Считаем количество выводимых ссылок перед текущим элементом -->
            <xsl:variable name="pre_count_page">
               <xsl:choose>
                  <xsl:when test="$current_page &gt; ($n - (round($visible_pages div 2) - 1))">
                     <xsl:value-of select="$visible_pages - ($n - $current_page)"/>
                  </xsl:when>
                  <xsl:otherwise>
                     <xsl:value-of select="round($visible_pages div 2) - 1"/>
                  </xsl:otherwise>
               </xsl:choose>
            </xsl:variable>
            
            <!-- Считаем количество выводимых ссылок после текущего элемента -->
            <xsl:variable name="post_count_page">
               <xsl:choose>
                  <xsl:when test="0 &gt; $current_page - (round($visible_pages div 2) - 1)">
                     <xsl:value-of select="$visible_pages - $current_page - 1"/>
                  </xsl:when>
                  <xsl:otherwise>
                     <xsl:choose>
                        <xsl:when test="round($visible_pages div 2) = ($visible_pages div 2)">
                           <xsl:value-of select="$visible_pages div 2"/>
                        </xsl:when>
                        <xsl:otherwise>
                           <xsl:value-of select="round($visible_pages div 2) - 1"/>
                        </xsl:otherwise>
                     </xsl:choose>
                  </xsl:otherwise>
               </xsl:choose>
            </xsl:variable>
            <!-- ############################################################################################## -->
            
            
            <!-- ############ след и в конец ############### -->
            <!-- Заносим в переменную $parent_group_id идентификатор текущей группы -->
            <xsl:variable name="parent_group_id" select="/shop/@current_group_id"/>
            
            <!-- Путь для тэга -->
            <xsl:variable name="tag_path_end">
               <xsl:if test="count(/shop/selected_tags/tag) = 1">tag/<xsl:value-of select="/shop/selected_tags/tag/tag_path_name"/>/</xsl:if>
            </xsl:variable>
            
            <!-- Определяем группу для формирования адреса ссылки -->
            <xsl:variable name="group_link_end">
               <xsl:choose>
                  <!-- Если группа не корневая (!=0) -->
                  <xsl:when test="$parent_group_id != 0">
                     <xsl:value-of select="/shop//group[@id=$parent_group_id]/fullpath"/>
                  </xsl:when>
                  <!-- Иначе если нулевой уровень - просто ссылка на страницу со списком элементов -->
                  <xsl:otherwise></xsl:otherwise>
               </xsl:choose>
            </xsl:variable>
            
            
            <!-- Передаем фильтр -->
            <xsl:variable name="filter_end">
               <xsl:choose>
                  <xsl:when test="/shop/apply_filter/node()">?action=apply_filter&amp;producer_id=<xsl:value-of select="/shop/producer_id"/>&amp;saller_id=<xsl:value-of select="/shop/saller_id"/>&amp;price_from=<xsl:value-of select="/shop/price_from"/>&amp;price_to=<xsl:value-of select="/shop/price_to"/>&amp;on_page=<xsl:value-of select="/shop/on_page"/>
                     <xsl:if test="/shop/property_xml/node()">
                        <!-- GET для доп. свойств -->
                        <xsl:value-of select="/shop/property_xml"/>
                        
                     </xsl:if>
                  </xsl:when>
                  <xsl:otherwise></xsl:otherwise>
               </xsl:choose>
            </xsl:variable>
            
            <!-- Определяем первый символ вопрос или амперсанд -->
            <xsl:variable name="first_symbol_end">
               <xsl:choose>
                  <xsl:when test="$filter_end != ''">&amp;</xsl:when>
                  <xsl:otherwise>?</xsl:otherwise>
               </xsl:choose>
            </xsl:variable>
            
            <!-- Данные для стрелок сортировки -->
            <xsl:variable name="arrows">
               <xsl:choose>
                  <xsl:when test="(/shop/sort_by_field = 1) or (/shop/sort_by_field = 2)">
                     <xsl:choose>
                        <!-- Стрелка вверх -->
                        <xsl:when test="/shop/order_direction = 'ASC'">
                           <xsl:value-of select="$first_symbol_end"/>sort_by_field=<xsl:value-of select="/shop/sort_by_field"/>&amp;order_direction=1</xsl:when>
                        <!-- Стрелка вниз -->
                        <xsl:otherwise>
                           <xsl:value-of select="$first_symbol_end"/>sort_by_field=<xsl:value-of select="/shop/sort_by_field"/>&amp;order_direction=2</xsl:otherwise>
                     </xsl:choose>
                  </xsl:when>
                  <xsl:otherwise></xsl:otherwise>
               </xsl:choose>
            </xsl:variable>
            
            <!-- Определяем адрес ссылки -->
            <xsl:variable name="number_link_end">
               <xsl:choose>
                  <!-- Если не нулевой уровень -->
                  <xsl:when test="$i != 0">page-<xsl:value-of select="$i"/>/</xsl:when>
                  <!-- Иначе если нулевой уровень - просто ссылка на страницу со списком элементов -->
                  <xsl:otherwise></xsl:otherwise>
               </xsl:choose>
            </xsl:variable>
            
            <xsl:if test="$i >= $n">
               <xsl:choose>
                  <xsl:when test="$current_page+1 != $n">
                     <a title="вперед" href="{/shop/path}{$group_link_end}{$tag_path_end}page-{$current_page+2}/{$filter_end}{$arrows}">
                        вперед &gt;&gt;&gt;
                     </a>
                  </xsl:when>
                  <xsl:otherwise>
                     <a title="вперед">
                        вперед &gt;&gt;&gt;
                     </a>
                  </xsl:otherwise>
               </xsl:choose>
            </xsl:if>
            
            
            
            
            <xsl:if test="$count_items &gt; $items_on_page and $n &gt; $i">
               
               
               <!-- Путь для тэга -->
               <xsl:variable name="tag_path">
                  <xsl:if test="count(/shop/selected_tags/tag) = 1">tag/<xsl:value-of select="/shop/selected_tags/tag/tag_path_name"/>/</xsl:if>
               </xsl:variable>
               
               <!-- Определяем группу для формирования адреса ссылки -->
               <xsl:variable name="group_link">
                  <xsl:choose>
                     <!-- Если группа не корневая (!=0) -->
                     <xsl:when test="$parent_group_id != 0">
                        <xsl:value-of select="/shop//group[@id=$parent_group_id]/fullpath"/>
                     </xsl:when>
                     <!-- Иначе если нулевой уровень - просто ссылка на страницу со списком элементов -->
                     <xsl:otherwise></xsl:otherwise>
                  </xsl:choose>
               </xsl:variable>
               
               <!-- Определяем адрес ссылки -->
               <xsl:variable name="number_link">
                  <xsl:choose>
                     <!-- Если не нулевой уровень -->
                     <xsl:when test="$i != 0">page-<xsl:value-of select="$i+1"/>/</xsl:when>
                     <!-- Иначе если нулевой уровень - просто ссылка на страницу со списком элементов -->
                     <xsl:otherwise></xsl:otherwise>
                  </xsl:choose>
               </xsl:variable>
               
               <!-- Передаем фильтр -->
               <xsl:variable name="filter">
                  <xsl:choose>
                     <xsl:when test="/shop/apply_filter/node()">?action=apply_filter&amp;producer_id=<xsl:value-of select="/shop/producer_id"/>&amp;saller_id=<xsl:value-of select="/shop/saller_id"/>&amp;price_from=<xsl:value-of select="/shop/price_from"/>&amp;price_to=<xsl:value-of select="/shop/price_to"/>&amp;on_page=<xsl:value-of select="/shop/on_page"/>
                        <xsl:if test="/shop/property_xml/node()">
                           <!-- GET для доп. свойств -->
                           <xsl:value-of select="/shop/property_xml"/>
                        </xsl:if>
                     </xsl:when>
                     <xsl:otherwise></xsl:otherwise>
                  </xsl:choose>
               </xsl:variable>
               
               <!-- Определяем первый символ вопрос или амперсанд -->
               <xsl:variable name="first_symbol">
                  <xsl:choose>
                     <xsl:when test="$filter != ''">&amp;</xsl:when>
                     <xsl:otherwise>?</xsl:otherwise>
                  </xsl:choose>
               </xsl:variable>
               
               
               <!-- ############ первая и предыдущая ############### -->
               <!-- Выводим ссылку на первую страницу -->
               <xsl:if test="$i = 0">
                  <xsl:choose>
                     <xsl:when test="$current_page &gt; 0">
                        <a title="назад" href="{/shop/path}{$group_link_end}{$tag_path_end}page-{$current_page}/{$filter_end}{$arrows}">&lt;&lt;&lt;&#xA0;назад</a>
                     </xsl:when>
                     <xsl:otherwise>
                        <a title="назад">
                           &lt;&lt;&#xA0;назад
                        </a>
                     </xsl:otherwise>
                  </xsl:choose>
               </xsl:if>
               <!-- /    ######## первая и предыдущая ############### -->
               
               <!-- Ставим ссылку на страницу-->
               <xsl:if test="$i != $current_page">
                  
                  <xsl:if test="$i &gt;= ($current_page - $pre_count_page) and ($current_page + $post_count_page) &gt;= $i">
                     <!-- Выводим ссылки на видимые страницы -->
                     <b><a href="{/shop/path}{$group_link}{$tag_path}{$number_link}{$filter}{$arrows}" class="page_link">
                           <xsl:value-of select="$i + 1"/>
                     </a></b>&#xA0;
                  </xsl:if>
               </xsl:if>
               
               <!-- Ссылка на предыдущую страницу для Ctrl + влево -->
               <xsl:if test="$current_page != 0 and $i = $current_page">
                  <xsl:variable name="prev_number_link">
                     <xsl:choose>
                        <!-- Если не нулевой уровень -->
                        <xsl:when test="($current_page - 1) != 0">page-<xsl:value-of select="$i"/>/</xsl:when>
                        <!-- Иначе если нулевой уровень - просто ссылка на страницу со списком элементов -->
                        <xsl:otherwise></xsl:otherwise>
                     </xsl:choose>
                  </xsl:variable>
                  
                  <a href="{/shop/path}{$group_link}{$tag_path}{$prev_number_link}{$filter}{$arrows}" id="id_prev"></a>
               </xsl:if>
               
               <!-- Ссылка на следующую страницу для Ctrl + вправо -->
               <xsl:if test="($n - 1) > $current_page and $i = $current_page">
                  <a href="{/shop/path}{$group_link}{$tag_path}page-{$current_page+2}/{$filter}{$arrows}" id="id_next"></a>
               </xsl:if>
               
               <!-- Не ставим ссылку на страницу-->
               <xsl:if test="$i = $current_page">
                  <b>
                     <xsl:value-of select="$i+1"/>
                  </b>&#xA0;
               </xsl:if>
               
               <!-- Выводим ссылку на последнюю страницу -->
               <!-- <xsl:if test="$i+1 &gt;= $n">
                  <xsl:choose>
                     <xsl:when test="$n &gt; round($n)">
                        -->         <!-- Выводим ссылку на последнюю страницу -->
                        <!--           <a href="{/shop/path}{$group_link}{$tag_path}{$number_link}{$filter}{$arrows}page-{round($n+1)}/" class="page_link" style="text-decoration: none;">&#x2192;</a>
                     </xsl:when>
                     <xsl:otherwise>
                        <a href="{/shop/path}{$group_link}{$tag_path}{$number_link}{$filter}{$arrows}" class="page_link" style="text-decoration: none;">&#x2192;</a>
                     </xsl:otherwise>
                  </xsl:choose>
               </xsl:if> -->
               
               <!-- Рекурсивный вызов шаблона. НЕОБХОДИМО ПЕРЕДАВАТЬ ВСЕ НЕОБХОДИМЫЕ ПАРАМЕТРЫ! -->
               <xsl:call-template name="for">
                  <xsl:with-param name="i" select="$i + 1"/>
                  <xsl:with-param name="items_on_page" select="$items_on_page"/>
                  <xsl:with-param name="current_page" select="$current_page"/>
                  <xsl:with-param name="count_items" select="$count_items"/>
                  <xsl:with-param name="visible_pages" select="$visible_pages"/>
               </xsl:call-template>
            </xsl:if>
         </xsl:template>
         
         <!-- Шаблон выводит рекурсивно ссылки на группы инф. элемента -->
         <xsl:template match="group" mode="goup_path">
            <xsl:param name="parent_id" select="@parent"/>
            
            <!-- Получаем ID родительской группы и записываем в переменную $parent_group_id -->
            <xsl:param name="parent_group_id" select="/shop/@current_group_id"/>
            
            <xsl:apply-templates select="//group[@id=$parent_id]" mode="goup_path"/>
            
            <!-- <xsl:if test="@parent=0">
               <a href="{/shop/path}">
                  <xsl:value-of select="/shop/name"/>
               </a>
            </xsl:if> -->
            
            <xsl:if test="@parent=0">
               <a href="/stomatologam/">
                  Стоматологам
               </a>
            </xsl:if>
            
            &#xA0;&#x2192;&#xA0;
            
            <xsl:choose>
               <xsl:when test="$parent_group_id = @id">
                  <xsl:value-of disable-output-escaping="yes" select="name"/>
               </xsl:when>
               <xsl:otherwise>
                  <a href="{/shop/path}{fullpath}">
                     <xsl:value-of disable-output-escaping="yes" select="name"/>
                  </a>
               </xsl:otherwise>
            </xsl:choose>
         </xsl:template>
         
      </xsl:stylesheet>


Авторизация