EVOLUTION-MANAGER
Edit File: LangPanel.html
<?xml version="1.0" encoding="UTF-8"?> <!-- 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. --> <!DOCTYPE html> <html xmlns:wicket="http://wicket.apache.org"> <wicket:extend> <div wicket:id="feedback" class="feedback"></div> <div class="adminPanelColumnTable label"> <form wicket:id="langForm" class="addLanguagePanel"> <div class="input-group input-group-sm"> <div class="input-group-prepend"> <button class="btn btn-outline-success" wicket:id="addLangBtn" wicket:message="title:362"> <i class="fas fa-plus"></i> </button> <button wicket:id="deleteLangBtn" wicket:message="title:363"></button> </div> <select wicket:id="language" class="form-control"></select> <div class="input-group-append"> <button wicket:id="export"></button> <button class="fileupload fileupload-new m-0 btn btn-file btn-xs btn-primary" data-provides="fileupload"> <wicket:message key="387"/> <input type="file" accept="text/xml" wicket:id="fileInput"/> </button> </div> </div> </form> <div class="adminNav" wicket:id="navigator">[dataview navigator]</div> <table class="list-table table-striped table-hover"> <thead> <tr> <th class="col-6"><span wicket:id="orderByName"></span><wicket:message key="165" /></th> <th class="col-6"><span wicket:id="orderByValue"></span><wicket:message key="271" /></th> </tr> </thead> <tbody wicket:id="listContainer" > <tr wicket:id="langList"> <td class="col-6"><div class="col-wrapper"><span wicket:id="key"></span></div></td> <td class="col-6"><div class="col-wrapper"><span wicket:id="value"></span></div></td> </tr> </tbody> </table> </div> <div class="adminPanelColumnForm"> <form wicket:id="form" class="adminForm"> <div class="actions" wicket:id="buttons"></div> <div class="scrollcontent" id="adminForm"> <fieldset> <legend><wicket:message key="353" /></legend> <div class="formelement"> <label wicket:for="key" class="col-3 text-right"><wicket:message key="165" /></label> <input type="text" wicket:id="key" class="col-8"/> </div> <div class="formelement"> <label wicket:for="value" class="col-3 text-right"><wicket:message key="271" /></label> <textarea wicket:id="value" class="col-8"></textarea> </div> </fieldset> <div class="bottom-bumper"></div> </div> </form> </div> <div wicket:id="addLang"></div> </wicket:extend> </html>