View all tab regression in previous commit
This commit is contained in:
parent
b000bfbe6d
commit
65291299b8
1 changed files with 5 additions and 5 deletions
|
@ -14,7 +14,7 @@
|
||||||
<#if ( groupTabs.properties?size > 0 ) >
|
<#if ( groupTabs.properties?size > 0 ) >
|
||||||
<#assign groupName = groupTabs.getName(nameForOtherGroup)>
|
<#assign groupName = groupTabs.getName(nameForOtherGroup)>
|
||||||
<#if groupName?has_content>
|
<#if groupName?has_content>
|
||||||
<#--the function replaces spaces in the name with underscores, also called for the property group menu-->
|
<#--the function replaces spaces in the name with underscores, also called for the property group menu-->
|
||||||
<#assign groupNameHtmlId = p.createPropertyGroupHtmlId(groupName) >
|
<#assign groupNameHtmlId = p.createPropertyGroupHtmlId(groupName) >
|
||||||
<#else>
|
<#else>
|
||||||
<#assign groupName = "${i18n().properties_capitalized}">
|
<#assign groupName = "${i18n().properties_capitalized}">
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
</#if>
|
</#if>
|
||||||
</#list>
|
</#list>
|
||||||
<#if (propertyGroups.all?size > 1) >
|
<#if (propertyGroups.all?size > 1) >
|
||||||
<li id="viewAllTab" data-toggle="tab" href="#viewAll"><a href="#">${i18n().view_all_capitalized}</a></li>
|
<li id="viewAllTab" data-toggle="tab" groupName="viewAll" href="#viewAll"><a href="#">${i18n().view_all_capitalized}</a></li>
|
||||||
</#if>
|
</#if>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -45,15 +45,15 @@
|
||||||
<div id="${groupNameHtmlId?replace("/","-")}"
|
<div id="${groupNameHtmlId?replace("/","-")}"
|
||||||
class="tab-pane <#if (sectionCount == 1) >active</#if>"
|
class="tab-pane <#if (sectionCount == 1) >active</#if>"
|
||||||
role="tabpanel">
|
role="tabpanel">
|
||||||
<#-- Display the group heading -->
|
<#-- Display the group heading -->
|
||||||
<#if groupName?has_content>
|
<#if groupName?has_content>
|
||||||
<#--the function replaces spaces in the name with underscores, also called for the property group menu-->
|
<#--the function replaces spaces in the name with underscores, also called for the property group menu-->
|
||||||
<#assign groupNameHtmlId = p.createPropertyGroupHtmlId(groupName) >
|
<#assign groupNameHtmlId = p.createPropertyGroupHtmlId(groupName) >
|
||||||
<h2 id="${groupNameHtmlId?replace("/","-")}" pgroup="tabs" class="hidden">${groupName?capitalize}</h2>
|
<h2 id="${groupNameHtmlId?replace("/","-")}" pgroup="tabs" class="hidden">${groupName?capitalize}</h2>
|
||||||
<#else>
|
<#else>
|
||||||
<h2 id="properties" pgroup="tabs" class="hidden">${i18n().properties_capitalized}</h2>
|
<h2 id="properties" pgroup="tabs" class="hidden">${i18n().properties_capitalized}</h2>
|
||||||
</#if>
|
</#if>
|
||||||
<#-- List the properties in the group -->
|
<#-- List the properties in the group -->
|
||||||
<#include "individual-properties.ftl">
|
<#include "individual-properties.ftl">
|
||||||
</div>
|
</div>
|
||||||
<#assign sectionCount = 2 >
|
<#assign sectionCount = 2 >
|
||||||
|
|
Loading…
Add table
Reference in a new issue