| <#-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| <div> |
| <form action="<@ofbizUrl>/entitymaint</@ofbizUrl>"> |
| <b>${uiLabelMap.CommonGroup}:</b> |
| <select name="filterByGroupName"> |
| <option value="">${uiLabelMap.CommonAll}</option> |
| <#list entityGroups as group> |
| <option value="${group}" <#if filterByGroupName??><#if group = filterByGroupName>selected="selected"</#if></#if>>${group}</option> |
| </#list> |
| </select> |
| <b>${uiLabelMap.WebtoolsEntityName}:</b> |
| <input type= "text" name= "filterByEntityName" value="${parameters.filterByEntityName!}"/> |
| <input type="submit" value="${uiLabelMap.CommonApply}"/> |
| </form> |
| </div> |
| <#assign firstChar = "x"> |
| <#assign anchor=""> |
| <#assign alt_row = false> |
| <#assign right_col = false> |
| <div class="button-bar"> |
| <#list entitiesList as entity> |
| <#if entity.entityName?substring(0, 1) != firstChar> |
| <#assign firstChar = entity.entityName?substring(0, 1)> |
| <a href="#Entity_${firstChar}">${firstChar}</a> |
| </#if> |
| </#list> |
| </div> |
| <div class="screenlet"> |
| <div class="screenlet-title-bar"> |
| <ul> |
| <li class="h3">${uiLabelMap.WebtoolsEntitiesAlpha}</li> |
| </ul> |
| <br class="clear"/> |
| </div> |
| <div class="screenlet-body"> |
| <#assign firstChar = "*"> |
| <table class="basic-table hover-bar" cellspacing='0'> |
| <tr class="header-row"> |
| <td>${uiLabelMap.WebtoolsEntityName}</td> |
| <td> </td> |
| <td>${uiLabelMap.WebtoolsEntityName}</td> |
| <td> </td> |
| </tr> |
| <#list entitiesList as entity> |
| <#if entity.entityName?substring(0, 1) != firstChar> |
| <#if right_col> |
| <td> </td><td> </td></tr> |
| <#assign right_col = false> |
| <#assign alt_row = !alt_row> |
| </#if> |
| <#if firstChar != "*"> |
| <tr<#if alt_row> class="alternate-row"</#if>><td colspan="4"> </td></tr> |
| <#assign alt_row = !alt_row> |
| </#if> |
| <#assign firstChar = entity.entityName?substring(0, 1)> |
| <#assign anchor="id=\"Entity_${firstChar}\""> |
| </#if> |
| <#if !right_col> |
| <tr<#if alt_row> class="alternate-row"</#if>> |
| </#if> |
| |
| <td<#if anchor?has_content> ${anchor}</#if>>${entity.entityName}<#if entity.viewEntity == 'Y'> (${uiLabelMap.WebtoolsEntityView})</#if></td> |
| <#assign anchor=""> |
| <td class="button-col"> |
| <#if entity.viewEntity == 'Y'> |
| <#if entity.entityPermissionView == 'Y'> |
| <a href='<@ofbizUrl>ViewRelations?entityName=${entity.entityName}</@ofbizUrl>'>${uiLabelMap.WebtoolsReln}</a> |
| <a href='<@ofbizUrl>FindGeneric?entityName=${entity.entityName}</@ofbizUrl>'>${uiLabelMap.WebtoolsFind}</a> |
| <a href='<@ofbizUrl>FindGeneric?entityName=${entity.entityName}&find=true&VIEW_SIZE=50&VIEW_INDEX=0</@ofbizUrl>'>${uiLabelMap.WebtoolsAll}</a> |
| </#if> |
| <#else> |
| <#if entity.entityPermissionCreate == 'Y'> |
| <a href='<@ofbizUrl>ViewGeneric?entityName=${entity.entityName}</@ofbizUrl>' title='${uiLabelMap.CommonCreateNew}'>${uiLabelMap.WebtoolsCreate}</a> |
| </#if> |
| <#if entity.entityPermissionView == 'Y'> |
| <a href='<@ofbizUrl>ViewRelations?entityName=${entity.entityName}</@ofbizUrl>' title='${uiLabelMap.WebtoolsViewRelations}'>${uiLabelMap.WebtoolsReln}</a> |
| <a href='<@ofbizUrl>FindGeneric?entityName=${entity.entityName}</@ofbizUrl>' title='${uiLabelMap.WebtoolsFindRecord}'>${uiLabelMap.WebtoolsFind}</a> |
| <a href='<@ofbizUrl>FindGeneric?entityName=${entity.entityName}&find=true&VIEW_SIZE=50&VIEW_INDEX=0</@ofbizUrl>' title='${uiLabelMap.WebtoolsFindAllRecords}'>${uiLabelMap.WebtoolsAll}</a> |
| </#if> |
| </#if> |
| </td> |
| <#if right_col> |
| </tr> |
| <#assign alt_row = !alt_row> |
| </#if> |
| <#assign right_col = !right_col> |
| </#list> |
| <#if right_col> |
| <td> </td><td> </td></tr> |
| </#if> |
| </table> |
| </div> |
| </div> |