This repository has been archived on 2026-05-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Codiki/frontend/src/app/pages/search-publications/search-publications.component.html
T

14 lines
420 B
HTML

<h1 i18n>Search results</h1>
@if((isLoading$ | async) === true) {
<h2 i18n>Search in progress...</h2>
<mat-spinner></mat-spinner>
} @else if((isLoaded$ | async) === true) {
@if((publications$ | async)?.length) {
<app-publication-list [publications$]="publications$"></app-publication-list>
} @else {
<span i18n>No any result.</span>
}
} @else {
<span i18n>No any result.</span>
}