Compare commits
2 Commits
f08e5447fd
...
41b23570c0
Author | SHA1 | Date | |
---|---|---|---|
41b23570c0 | |||
a701f943eb |
@ -16,9 +16,7 @@ import static ru.ulstu.extractor.core.Route.LIST_INDEXED_REPOSITORIES;
|
||||
public class MvcConfiguration implements WebMvcConfigurer {
|
||||
@Override
|
||||
public void addViewControllers(ViewControllerRegistry registry) {
|
||||
registry.addViewController("/{articlename:\\w+}");
|
||||
registry.addRedirectViewController("/", LIST_INDEXED_REPOSITORIES);
|
||||
registry.addRedirectViewController("/default", "/home");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -22,6 +22,7 @@
|
||||
th:text="${branch.name}"></a>
|
||||
</td>
|
||||
<td>
|
||||
<div class="pull-right">
|
||||
<a role="button" class="btn btn-primary" title="Повторить индексацию ветки"
|
||||
th:if="${branch.indexingStatus.name() != 'INDEXING'}"
|
||||
th:href="@{'reindexBranch?branchId=' + ${branch.id}}">
|
||||
@ -30,11 +31,13 @@
|
||||
<a role="button" class="btn btn-dark disabled"
|
||||
th:if="${branch.indexingStatus.name() == 'INDEXING'}">Индексируется...
|
||||
</a>
|
||||
<a role="button" class="btn btn-danger" th:if="${branch.indexingStatus.name() != 'INDEXING'}"
|
||||
<a role="button" class="btn btn-danger"
|
||||
th:if="${branch.indexingStatus.name() != 'INDEXING'}"
|
||||
th:href="@{'deleteBranch?id=' + ${branch.id} + '&repositoryId='+${repository.id}}"
|
||||
onclick="return confirm('Удалить ветку?')">
|
||||
<i class="fa fa-times" aria-hidden="true"></i>
|
||||
</a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
@ -21,7 +21,7 @@
|
||||
<td><a th:href="@{${@route.LIST_REPOSITORY_BRANCHES} + '?repositoryId=' + ${repo.id}}"
|
||||
th:text="${repo.name}" th:title="${repo.url}"></a></td>
|
||||
<td>
|
||||
<a role="button" class="btn btn-danger" th:href="@{'deleteRepository?id=' + ${repo.id}}"
|
||||
<a role="button" class="btn btn-danger pull-right" th:href="@{'deleteRepository?id=' + ${repo.id}}"
|
||||
onclick="return confirm('Удалить репозиторий?')">
|
||||
<i class="fa fa-times" aria-hidden="true"></i>
|
||||
</a>
|
||||
|
Loading…
Reference in New Issue
Block a user