Revize 2aa7cbff
Přidáno uživatelem Ondřej Váně před asi 4 roky(ů)
src/main/webapp/WEB-INF/templates/anti-pattern.html | ||
---|---|---|
15 | 15 |
margin-top: 40px; |
16 | 16 |
margin-left: 5%; |
17 | 17 |
margin-right: 5%; |
18 |
|
|
19 | 18 |
} |
20 | 19 |
</style> |
21 | 20 |
</head> |
... | ... | |
31 | 30 |
<input disabled type="text" class="form-control" id="projectId" th:value="${antiPattern.id}"> |
32 | 31 |
</div> |
33 | 32 |
<div class="form-group"> |
34 |
<label for="projectId">Project id:</label>
|
|
33 |
<label for="projectId">Anti Pattern name:</label>
|
|
35 | 34 |
<input disabled type="text" class="form-control" id="projectName" th:value="${antiPattern.printName}"> |
36 | 35 |
</div> |
37 | 36 |
<div class="form-group"> |
38 |
<label for="projectId">Project id:</label> |
|
39 |
<textarea disabled class="form-control" id="projectDescription" rows="5" th:text="${antiPattern.description}"></textarea> |
|
37 |
<label for="projectId">Project description:</label> |
|
38 |
<textarea disabled class="form-control" id="projectDescription" rows="5" |
|
39 |
th:text="${antiPattern.description}"></textarea> |
|
40 | 40 |
</div> |
41 | 41 |
</div> |
42 | 42 |
</div> |
src/main/webapp/WEB-INF/templates/project.html | ||
---|---|---|
31 | 31 |
<input disabled type="text" class="form-control" id="projectId" th:value="${project.id}"> |
32 | 32 |
</div> |
33 | 33 |
<div class="form-group"> |
34 |
<label for="projectId">Project id:</label>
|
|
34 |
<label for="projectId">Project name:</label>
|
|
35 | 35 |
<input disabled type="text" class="form-control" id="projectName" th:value="${project.name}"> |
36 | 36 |
</div> |
37 | 37 |
<div class="form-group"> |
38 |
<label for="projectId">Project id:</label>
|
|
38 |
<label for="projectId">Project description:</label>
|
|
39 | 39 |
<textarea disabled class="form-control" id="projectDescription" rows="5" th:text="${project.description}"></textarea> |
40 | 40 |
</div> |
41 | 41 |
</div> |
Také k dispozici: Unified diff
Project and anti pattern page updated