File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
src/main/webapp/WEB-INF/templates Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 2323< div th:replace ="fragments/navbar :: navBar "> </ div >
2424<!-- ./Navigation bar imported -->
2525< div class ="card ">
26- < h5 class ="card-header "> Anti Pattern</ h5 >
26+ < h3 class ="card-header "> Anti Pattern</ h3 >
2727 < div class ="card-body ">
2828 < div class ="form-group ">
2929 < label for ="projectId "> Anti Pattern Id:</ label >
@@ -34,10 +34,16 @@ <h5 class="card-header">Anti Pattern</h5>
3434 < input disabled type ="text " class ="form-control " id ="projectName " th:value ="${antiPattern.printName} ">
3535 </ div >
3636 < div class ="form-group ">
37- < label for ="projectId "> Project description:</ label >
37+ < label for ="projectId "> Anti Pattern description:</ label >
3838 < textarea disabled class ="form-control " id ="projectDescription " rows ="5 "
3939 th:text ="${antiPattern.description} "> </ textarea >
4040 </ div >
41+ < h5 > Anti Pattern configurations</ h5 >
42+ < div th:each ="config : ${antiPattern.configurations} " class ="form-group ">
43+ < label th:text ="${config.value.printName} + ':' " th:for ="${config.value.name} "> </ label >
44+ < input disabled type ="text " class ="form-control " th:id ="${config.value.name} " th:value ="${config.value.value} ">
45+ < small th:text ="${config.value.description} " th:value ="${config.value.name} " class ="form-text text-muted "> </ small >
46+ </ div >
4147 </ div >
4248</ div >
4349
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ <h1>Configuration</h1>
3131 < h3 th:text ="${antiPattern.printName} "> </ h3 >
3232 < div th:each ="config : ${antiPattern.configurations} ">
3333 < div class ="form-group row ">
34- < label th:text ="${config.value.printName} " th:for ="${config.value.name} "
34+ < label th:text ="${config.value.printName} + ':' " th:for ="${config.value.name} "
3535 class ="col-sm-5 col-form-label "> </ label >
3636 < div class ="col-sm-5 ">
3737 < input th:value ="${config.value.value} " class ="form-control " th:id ="${config.value.name} "
You can’t perform that action at this time.
0 commit comments