11<%@ taglib prefix =" form" uri =" http://www.springframework.org/tags/form" %>
22<table class =" userInput" >
3- <tr >
4- <td >ID Tag:</td >
5- <td >
6- <form:input path =" idTag" readonly =" ${ isUpdateForm } " />
7- <a class =" tooltip" href =" #" ><img src =" ${ ctxPath } /static/images/info.png" style =" vertical-align :middle " >
8- <span >This field is set when adding an OCPP Tag, and cannot be changed later</span >
9- </a >
10- </td >
11- </tr >
12- <tr >
13- <td >Parent ID Tag:</td >
14- <td ><form:select path =" parentIdTag" items =" ${ idTagList } " /></td >
15- </tr >
16- <tr ><td >Expiry Date/Time:</td ><td ><form:input path =" expiration" cssClass =" dateTimePicker" /></td ></tr >
17-
3+ <thead ><tr ><th >OCPP</th ><th ></th ></thead >
4+ <tbody >
5+ <tr >
6+ <td >ID Tag:</td >
7+ <td >
8+ <form:input path =" idTag" readonly =" ${ isUpdateForm } " />
9+ <a class =" tooltip" href =" #" ><img src =" ${ ctxPath } /static/images/info.png" style =" vertical-align :middle " >
10+ <span >This field is set when adding an OCPP Tag, and cannot be changed later</span >
11+ </a >
12+ </td >
13+ </tr >
14+ <tr >
15+ <td >Parent ID Tag:</td >
16+ <td ><form:select path =" parentIdTag" items =" ${ idTagList } " /></td >
17+ </tr >
18+ <tr ><td >Expiry Date/Time:</td ><td ><form:input path =" expiration" cssClass =" dateTimePicker" /></td ></tr >
19+ <tr ><td >Block the ID Tag:</td >
20+ <td ><form:radiobutton path =" blocked" value =" false" /> false</td >
21+ </tr >
22+ <tr >
23+ <td ></td >
24+ <td ><form:radiobutton path =" blocked" value =" true" /> true</td >
25+ </tr >
26+ </tbody >
27+ </table >
28+ <table class =" userInput" >
29+ <thead ><tr ><th >Misc.</th ><th ></th ></thead >
30+ <tbody >
1831 <%-- print inTransaction only when updating, otherwise unnecessary --%>
1932 <c:if test =" ${ isUpdateForm } " >
2033 <tr ><td >In Transaction?:</td ><td >${ inTransaction } </td ></tr >
2134 </c:if >
22-
23- <tr ><td >Block the ID Tag:</td >
24- <td ><form:radiobutton path =" blocked" value =" false" /> false</td >
25- </tr >
26- <tr >
27- <td ></td >
28- <td ><form:radiobutton path =" blocked" value =" true" /> true</td >
29- </tr >
3035 <tr ><td >Additional Note:</td ><td ><form:textarea path =" note" /></td ></tr >
3136 <tr ><td ></td >
3237 <td id =" add_space" >
3338 <input type =" submit" name =" ${ submitButtonName } " value =" ${ submitButtonValue } " >
3439 <input type =" submit" name =" backToOverview" value =" Back to Overview" >
3540 </td >
3641 </tr >
42+ </tbody >
3743</table >
0 commit comments