WIP: страницы для правил #62
@ -26,7 +26,7 @@ public class RecommendationController {
|
||||
}
|
||||
|
||||
@GetMapping(ASSESSMENTS)
|
||||
public String getRecommendations(Model model, @RequestParam Optional<Integer> branchId) {
|
||||
public String getAssessments(Model model, @RequestParam Optional<Integer> branchId) {
|
||||
model.addAttribute("branches", branchService.findAll());
|
||||
if (branchId.isPresent()) {
|
||||
model.addAttribute("assessments", fuzzyInferenceService.getAssessments(branchId.get()));
|
||||
|
@ -7,7 +7,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
</head>
|
||||
<div class="container" layout:fragment="content">
|
||||
<form action="#" th:action="${@route.RECOMMENDATIONS}" th:object="${filterBranchForm}" method="get">
|
||||
<form action="#" th:action="${@route.ASSESSMENTS}" th:object="${filterBranchForm}" method="get">
|
||||
<div class="row">
|
||||
<div class="col-md-2 col-sm-12">
|
||||
Репозиторий-ветка
|
||||
@ -26,17 +26,28 @@
|
||||
])
|
||||
;
|
||||
$('#select-branch').selectpicker('refresh');
|
||||
|
||||
</script>
|
||||
</div>
|
||||
<input type="submit" class="btn btn-outline-success w-100" value="Применить фильтр"/>
|
||||
</div>
|
||||
<div th:if="*{branchId == null}">Выбрерите ветку для получения рекомендаций</div>
|
||||
<div th:if="*{branchId == null}">Выбрерите ветку для получения оценки репозитория</div>
|
||||
|
||||
<input type="hidden" th:field="*{branchId}">
|
||||
</form>
|
||||
<div th:each="recommendation: ${recommendations}">
|
||||
<div th:text="${recommendation}"></div>
|
||||
<div th:if="${assessments != null}">
|
||||
<h3>Состояние репозитория описывается следующими выражениями:</h3>
|
||||
<div th:each="assessment: ${assessments}">
|
||||
<div th:text="${assessment.consequent}"></div>
|
||||
вследствие тенденции
|
||||
<div th:text="${assessment.firstAntecedentTendency}"></div>
|
||||
показателя
|
||||
<div th:text="${assessment.firstAntecedent}"></div>
|
||||
и тенденции
|
||||
<div th:text="${assessment.secondAntecedentTendency}"></div>
|
||||
показателя
|
||||
<div th:text="${assessment.secondAntecedent}"></div>
|
||||
и
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</html>
|
||||
|
@ -41,7 +41,7 @@
|
||||
<a class="nav-link" href="/listRules" th:text="Правила">Link</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/recommendations" th:text="Рекомендации">Link</a>
|
||||
<a class="nav-link" href="/assessments" th:text="Рекомендации">Link</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user