1
1
<%@ taglib prefix =" form" uri =" http://www.springframework.org/tags/form" %>
2
2
<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 >
18
31
<%-- print inTransaction only when updating, otherwise unnecessary --%>
19
32
<c:if test =" ${ isUpdateForm } " >
20
33
<tr ><td >In Transaction?:</td ><td >${ inTransaction } </td ></tr >
21
34
</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 >
30
35
<tr ><td >Additional Note:</td ><td ><form:textarea path =" note" /></td ></tr >
31
36
<tr ><td ></td >
32
37
<td id =" add_space" >
33
38
<input type =" submit" name =" ${ submitButtonName } " value =" ${ submitButtonValue } " >
34
39
<input type =" submit" name =" backToOverview" value =" Back to Overview" >
35
40
</td >
36
41
</tr >
42
+ </tbody >
37
43
</table >
0 commit comments