| <#-- |
| 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 class="screenlet"> |
| <div class="screenlet-title-bar"> |
| <h3>${uiLabelMap.PageTitleEditProductStoreWebSites}</h3> |
| </div> |
| <div class="screenlet-body"> |
| <a href="/content/control/EditWebSite?productStoreId=${productStoreId}&externalLoginKey=${requestAttributes.externalLoginKey}" class="buttontext">${uiLabelMap.ProductCreateNewProductStoreWebSite}</a> |
| <table cellspacing="0" class="basic-table"> |
| <tr class="header-row"> |
| <td>${uiLabelMap.ProductWebSiteId}</td> |
| <td>${uiLabelMap.ProductHost}</td> |
| <td>${uiLabelMap.ProductPort}</td> |
| <td> </td> |
| </tr> |
| <#if storeWebSites?has_content> |
| <#assign rowClass = "2"> |
| <#list storeWebSites as webSite> |
| <tr valign="middle"<#if rowClass == "1"> class="alternate-row"</#if>> |
| <td><a href="/content/control/EditWebSite?webSiteId=${webSite.webSiteId}&externalLoginKey=${requestAttributes.externalLoginKey}" class="buttontext">${webSite.siteName!} [${webSite.webSiteId}]</a></td> |
| <td>${webSite.httpHost?default(' ')}</td> |
| <td>${webSite.httpPort?default(' ')}</td> |
| <td align="center"> |
| <a href="javascript:document.storeUpdateWebSite_${webSite_index}.submit();" class="buttontext">${uiLabelMap.CommonDelete}</a> |
| <form name="storeUpdateWebSite_${webSite_index}" method="post" action="<@ofbizUrl>storeUpdateWebSite</@ofbizUrl>"> |
| <input type="hidden" name="viewProductStoreId" value="${productStoreId}"/> |
| <input type="hidden" name="productStoreId" value=""/> |
| <input type="hidden" name="webSiteId" value="${webSite.webSiteId}"/> |
| </form> |
| </td> |
| </tr> |
| <#-- toggle the row color --> |
| <#if rowClass == "2"> |
| <#assign rowClass = "1"> |
| <#else> |
| <#assign rowClass = "2"> |
| </#if> |
| </#list> |
| </#if> |
| </table> |
| </div> |
| </div> |
| <div class="screenlet"> |
| <div class="screenlet-title-bar"> |
| <h3>${uiLabelMap.ProductSetStoreOnWebSite}</h3> |
| </div> |
| <div class="screenlet-body"> |
| <form name="addWebSite" action="<@ofbizUrl>storeUpdateWebSite</@ofbizUrl>" method="post"> |
| <input type="hidden" name="viewProductStoreId" value="${productStoreId}" /> |
| <input type="hidden" name="productStoreId" value="${productStoreId}" /> |
| <select name="webSiteId"> |
| <#list webSites as webSite> |
| <option value="${webSite.webSiteId}">${webSite.siteName!} [${webSite.webSiteId}]</option> |
| </#list> |
| </select> |
| <input type="submit" class="smallSubmit" value="${uiLabelMap.CommonUpdate}" /> |
| </form> |
| </div> |
| </div> |