2022-05-05 10:32:06 +02:00
|
|
|
<div *ngIf="result" [ngClass]="{'uk-card uk-card-default': isCard}">
|
2022-03-15 12:13:28 +01:00
|
|
|
<div [ngClass]="{'uk-card-body': isCard}">
|
2022-05-05 12:44:46 +02:00
|
|
|
<div class="uk-grid uk-flex uk-flex-middle">
|
2023-02-16 15:33:40 +01:00
|
|
|
<div *ngIf="properties.enermapsURL && showEnermaps && result.enermapsId"
|
|
|
|
class=" uk-inline uk-width-auto uk-text-center uk-visible-toggle">
|
|
|
|
<img class="uk-width-medium" [src]="properties.enermapsURL +'/images/datasets/' + result.enermapsId + '.png'"
|
|
|
|
alt="Enermaps tool preview" loading="lazy">
|
|
|
|
<div
|
|
|
|
class="uk-overlay uk-margin-medium-left uk-overlay-default uk-position-bottom uk-hidden-hover uk-padding-small">
|
2022-05-05 12:44:46 +02:00
|
|
|
<p>Visit <a
|
2023-02-16 15:33:40 +01:00
|
|
|
class="custom-external uk-margin-right uk-margin-small-top"
|
|
|
|
[href]="properties.enermapsURL + '/?shared_id=' + result.enermapsId" target="_blank">
|
2022-05-05 12:44:46 +02:00
|
|
|
Enermaps tool
|
|
|
|
</a></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="uk-width-expand">
|
2023-02-17 18:40:05 +01:00
|
|
|
<!-- 1st section (title, metadata) -->
|
|
|
|
<div class="uk-margin-small-bottom">
|
2022-05-05 12:44:46 +02:00
|
|
|
<!-- Title -->
|
|
|
|
<div>
|
|
|
|
<h2 class="uk-margin-remove uk-text-break uk-inline-block uk-h6">
|
2023-02-16 15:33:40 +01:00
|
|
|
<a *ngIf="!externalUrl && result.id" (click)="onClick()" [queryParams]="createParam()"
|
|
|
|
[routerLink]="url" class="uk-link uk-text-decoration-none uk-width-expand">
|
2022-05-05 12:44:46 +02:00
|
|
|
<div *ngIf="(result.title) || result.acronym">
|
|
|
|
<span *ngIf="result.acronym">
|
|
|
|
{{result.acronym}}
|
|
|
|
</span>
|
|
|
|
<span *ngIf="result.acronym && (result.title)"> (</span>
|
|
|
|
<span *ngIf="result.title" [innerHTML]="result.title"></span>
|
|
|
|
<span *ngIf="result.acronym && result.title">)</span>
|
|
|
|
</div>
|
|
|
|
<div *ngIf="!result.title && !result.acronym">
|
|
|
|
[no title available]
|
|
|
|
</div>
|
|
|
|
</a>
|
2023-02-16 15:33:40 +01:00
|
|
|
<a *ngIf="externalUrl && result.id" (click)="onClick()"
|
|
|
|
target="_blank" [href]="externalUrl+result.id"
|
|
|
|
class="custom-external uk-link uk-text-decoration-none uk-width-expand">
|
2022-05-05 12:44:46 +02:00
|
|
|
<span *ngIf="(result.title) || result.acronym">
|
|
|
|
<span *ngIf="result.acronym">
|
|
|
|
{{result.acronym}}
|
|
|
|
</span>
|
|
|
|
<span *ngIf="result.acronym && (result.title)"> (</span>
|
|
|
|
<span *ngIf="result.title" [innerHTML]="result.title"></span>
|
|
|
|
<span *ngIf="result.acronym && result.title">)</span>
|
|
|
|
</span>
|
|
|
|
<span *ngIf="!result.title && !result.acronym">
|
|
|
|
[no title available]
|
|
|
|
</span>
|
|
|
|
</a>
|
2023-02-16 15:33:40 +01:00
|
|
|
<div *ngIf="!result.id" class="uk-width-expand">
|
2022-05-05 12:44:46 +02:00
|
|
|
<div *ngIf="(result.title) || result.acronym">
|
|
|
|
<span *ngIf="result.acronym">
|
|
|
|
{{result.acronym}}
|
|
|
|
</span>
|
|
|
|
<span *ngIf="result.acronym && (result.title)"> (</span>
|
|
|
|
<span *ngIf="result.title" [innerHTML]="result.title"></span>
|
|
|
|
<span *ngIf="result.acronym && result.title">)</span>
|
|
|
|
</div>
|
|
|
|
<div *ngIf="!result.title && !result.acronym">
|
|
|
|
[no title available]
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</h2>
|
|
|
|
</div>
|
2023-02-17 18:40:05 +01:00
|
|
|
<!-- Metadata -->
|
|
|
|
<div class="uk-margin-xsmall-top">
|
|
|
|
<entity-metadata [entityType]="type" [types]="result.types" [startYear]="result.startYear?.toString()" [endYear]="result.endYear?.toString()"
|
|
|
|
[year]="result.year?.toString()" [openAccessMandatePublications]="result.openAccessMandatePublications"
|
|
|
|
[openAccessMandateDatasets]="result.openAccessMandateDatasets" [date]="" [embargoEndDate]="result.embargoEndDate"
|
|
|
|
[publisher]="result.publisher" [countries]="result.countries"
|
|
|
|
[languages]="result.languages" [programmingLanguages]="result.programmingLanguages"
|
|
|
|
[compatibility]="result.compatibility" [type]="type"
|
|
|
|
></entity-metadata>
|
2023-02-16 15:33:40 +01:00
|
|
|
</div>
|
2022-05-05 12:44:46 +02:00
|
|
|
</div>
|
|
|
|
<!-- 2nd section (labels only) -->
|
2023-02-17 18:40:05 +01:00
|
|
|
<!--<div class="uk-margin-bottom">
|
|
|
|
<!– Labels –>
|
2022-05-05 12:44:46 +02:00
|
|
|
<div>
|
|
|
|
<span
|
|
|
|
*ngIf="result.accessMode && result.accessMode.toLowerCase() !== 'not available'"
|
|
|
|
class="uk-label uk-text-truncate " [ngClass]="'uk-label-' + accessClass(result.accessMode)"
|
|
|
|
title="Access Mode">
|
|
|
|
{{result.accessMode}}
|
|
|
|
</span>{{' '}}
|
2023-02-16 15:33:40 +01:00
|
|
|
<span
|
2022-05-05 12:44:46 +02:00
|
|
|
*ngIf="result.openAccessMandatePublications && (!result.openAccessMandateDatasets)"
|
|
|
|
class="uk-label uk-label-success uk-text-truncate"
|
|
|
|
title="Open Access mandate for {{openaireEntities.PUBLICATIONS}}">
|
|
|
|
Open Access mandate for {{openaireEntities.PUBLICATIONS}}
|
|
|
|
</span>{{' '}}
|
|
|
|
<span
|
|
|
|
*ngIf="result.openAccessMandateDatasets != undefined && result.openAccessMandateDatasets && (result.openAccessMandatePublications == undefined || !result.openAccessMandatePublications)"
|
2023-02-16 15:33:40 +01:00
|
|
|
class="uk-label uk-label-success uk-text-truncate "
|
|
|
|
title="Open Access mandate for {{openaireEntities.DATASETS}}">
|
2022-05-05 12:44:46 +02:00
|
|
|
Open Access mandate for {{openaireEntities.DATASETS}}
|
|
|
|
</span>{{' '}}
|
|
|
|
<span
|
|
|
|
*ngIf="result.openAccessMandatePublications != undefined && result.openAccessMandatePublications && result.openAccessMandateDatasets != undefined && result.openAccessMandateDatasets"
|
|
|
|
class="uk-label uk-label-success uk-text-truncate"
|
|
|
|
title="Open Access mandate for {{openaireEntities.PUBLICATIONS}} and {{openaireEntities.DATASETS}}">
|
|
|
|
Open Access mandate for {{openaireEntities.PUBLICATIONS}} and {{openaireEntities.DATASETS}}
|
|
|
|
</span>{{' '}}
|
|
|
|
<span *ngIf="result.languages && result.languages.length > 0">
|
|
|
|
<span
|
|
|
|
*ngFor="let language of result.languages"
|
|
|
|
class="uk-label" title="Language">
|
|
|
|
{{language}}
|
|
|
|
</span>{{' '}}
|
|
|
|
</span>
|
|
|
|
<span *ngIf="result.programmingLanguages && result.programmingLanguages.length > 0">
|
2023-02-16 15:33:40 +01:00
|
|
|
<span
|
2022-05-05 12:44:46 +02:00
|
|
|
*ngFor="let programmingLanguage of result.programmingLanguages"
|
|
|
|
class="uk-label" title="Programming Language">
|
|
|
|
{{programmingLanguage}}
|
|
|
|
</span>{{" "}}
|
|
|
|
</span>
|
2023-02-17 18:40:05 +01:00
|
|
|
<!– <span –>
|
|
|
|
<!– *ngIf="result.sc39" class="uk-label" title="Special Clause 39">–>
|
|
|
|
<!– Special Clause 39–>
|
|
|
|
<!– </span>{{' '}}–>
|
2023-02-16 15:33:40 +01:00
|
|
|
<span
|
2022-09-30 13:51:00 +02:00
|
|
|
*ngIf="result.compatibility && result.compatibility != '' && result.compatibility.toLowerCase() != 'not yet registered'"
|
2022-05-05 12:44:46 +02:00
|
|
|
class="uk-label" title="Compatibility">
|
|
|
|
{{result.compatibility}}
|
|
|
|
</span>{{' '}}
|
2023-02-16 15:33:40 +01:00
|
|
|
<span
|
|
|
|
*ngIf="result.compatibility != undefined && result.compatibility != '' && result.compatibility.toLowerCase() == 'not yet registered'
|
2022-05-30 15:52:28 +02:00
|
|
|
&& result.resultType != 'service'"
|
2023-02-16 15:33:40 +01:00
|
|
|
class="uk-label" [class.uk-label-danger]="deposit" title="OpenAIRE Compatibility">
|
2022-09-30 13:51:00 +02:00
|
|
|
{{result.compatibility}} <span *ngIf="properties.adminToolsPortalType == 'eosc'">in OpenAIRE</span>
|
2022-05-05 12:44:46 +02:00
|
|
|
</span>{{' '}}
|
|
|
|
</div>
|
2023-02-17 18:40:05 +01:00
|
|
|
</div>-->
|
2022-05-05 12:44:46 +02:00
|
|
|
<!-- 3rd section (funders, budget, authors, PIDs, publisher etc.) -->
|
2023-02-17 18:40:05 +01:00
|
|
|
<div class="uk-text-small uk-margin-small-bottom">
|
2022-05-05 12:44:46 +02:00
|
|
|
<!-- Funder -->
|
2023-02-17 18:40:05 +01:00
|
|
|
<div *ngIf="result.funderShortname || result.code" class="uk-margin-xsmall-bottom">
|
2022-05-05 12:44:46 +02:00
|
|
|
<span *ngIf="result.funderShortname">
|
|
|
|
<span class="uk-text-meta">Funder: </span>
|
|
|
|
{{result.funderShortname}}
|
|
|
|
</span>
|
|
|
|
<span *ngIf="result.code" [class.uk-margin-left]="result.funderShortname">
|
|
|
|
<span class="uk-text-meta">{{openaireEntities.PROJECT}} Code: </span>
|
2023-02-16 15:33:40 +01:00
|
|
|
{{result.code}}
|
2022-05-05 12:44:46 +02:00
|
|
|
</span>
|
|
|
|
<!-- Currently not parsed -->
|
|
|
|
<!-- <span *ngIf="result.callIdentifier" [class.uk-margin-left]="(result.funderShortname || result.code)">-->
|
|
|
|
<!-- <span class="uk-text-muted">Call for proposal: </span>-->
|
|
|
|
<!-- {{result.callIdentifier}}-->
|
|
|
|
<!-- </span>-->
|
|
|
|
</div>
|
|
|
|
<!-- Funder Budget -->
|
2023-02-17 18:40:05 +01:00
|
|
|
<div *ngIf="result.budget || result.contribution" class="uk-margin-xsmall-bottom">
|
2022-05-05 12:44:46 +02:00
|
|
|
<span *ngIf="result.budget">
|
|
|
|
<span class="uk-text-meta">Overall Budget: </span>
|
|
|
|
{{result.budget | number}}
|
|
|
|
<span *ngIf="result.currency">{{result.currency}}</span>
|
|
|
|
</span>
|
|
|
|
<span *ngIf="result.contribution" [class.uk-margin-left]="result.budget">
|
|
|
|
<span class="uk-text-meta">Funder Contribution: </span>
|
|
|
|
{{result.contribution | number}}
|
|
|
|
<span *ngIf="result.currency">{{result.currency}}</span>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<!-- Authors -->
|
2023-02-17 18:40:05 +01:00
|
|
|
<div *ngIf="result.authors" class="uk-flex uk-margin-xsmall-bottom">
|
2022-05-05 12:44:46 +02:00
|
|
|
<showAuthors [authors]="result.authors" [authorsLimit]=10 [modal]="modal"
|
2023-02-16 15:33:40 +01:00
|
|
|
[showAll]=false></showAuthors>
|
2022-05-05 12:44:46 +02:00
|
|
|
</div>
|
|
|
|
<!-- Identifiers -->
|
2023-02-17 18:40:05 +01:00
|
|
|
<div *ngIf="result.identifiers && result.identifiers.size > 0" class="uk-margin-xsmall-bottom">
|
2022-05-05 12:44:46 +02:00
|
|
|
<showIdentifiers [identifiers]="result.identifiers"></showIdentifiers>
|
|
|
|
</div>
|
|
|
|
<!-- Projects -->
|
2023-02-17 18:40:05 +01:00
|
|
|
<div *ngIf="result.projects && result.projects.length > 0" class="uk-margin-xsmall-bottom">
|
2022-05-05 12:44:46 +02:00
|
|
|
<span class="uk-text-meta"> Project: </span>
|
|
|
|
<span *ngFor="let project of result.projects.slice(0,10) let i=index">
|
|
|
|
<span>
|
|
|
|
{{project.funderShortname ? project.funderShortname : project.funderName}}
|
|
|
|
</span>
|
|
|
|
<span *ngIf="project.acronym || project.title">
|
|
|
|
| {{ project.acronym ? project.acronym : (project.title.length > 25 ?
|
2023-02-16 15:33:40 +01:00
|
|
|
project.title.substring(0, 25) + '...' : project.title)}}
|
2022-05-05 12:44:46 +02:00
|
|
|
</span>
|
|
|
|
<span *ngIf="project.code"> ({{project.code}})</span>
|
|
|
|
<span *ngIf="i < result.projects.length-1">,</span>
|
|
|
|
</span>
|
|
|
|
<span *ngIf="result.projects.length > 10">...</span>
|
|
|
|
</div>
|
|
|
|
<!-- Organizations -->
|
|
|
|
<div *ngIf="showOrganizations && result.organizations && result.organizations.length > 0"
|
2023-02-17 18:40:05 +01:00
|
|
|
class="uk-margin-xsmall-bottom">
|
2022-05-05 12:44:46 +02:00
|
|
|
<span class="uk-text-meta">Partners: </span>
|
|
|
|
<span *ngFor="let organization of result.organizations.slice(0,10) let i=index">
|
|
|
|
<span>{{organization.name}}</span>
|
|
|
|
<span *ngIf="(i < result.organizations.length-1) && (i < 9)">, </span>
|
|
|
|
</span>
|
|
|
|
<span *ngIf="result.organizations.length > 10">...</span>
|
|
|
|
</div>
|
|
|
|
<!-- Website URL -->
|
2023-02-16 15:33:40 +01:00
|
|
|
<div *ngIf="result.websiteURL && result.websiteURL != '' && !promoteWebsiteURL"
|
2023-02-17 18:40:05 +01:00
|
|
|
class="uk-margin-xsmall-bottom">
|
2022-05-05 12:44:46 +02:00
|
|
|
<span class="uk-text-meta">Website URL: </span>
|
|
|
|
<span>
|
|
|
|
<a href="{{result.websiteURL}}" target="_blank" class="custom-external">
|
|
|
|
{{result.websiteURL}}
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<!-- OAI-PMH URL-->
|
2023-02-17 18:40:05 +01:00
|
|
|
<div *ngIf="result.OAIPMHURL && result.OAIPMHURL != ''" class="uk-margin-xsmall-bottom">
|
2022-05-05 12:44:46 +02:00
|
|
|
<span class="uk-text-meta">OAI-PMH URL: </span>
|
|
|
|
<span>
|
|
|
|
<a href="{{result.OAIPMHURL}}" target="_blank" class="custom-external">
|
|
|
|
{{result.OAIPMHURL}}
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<!-- Subjects -->
|
|
|
|
<div *ngIf="showSubjects && result.subjects && result.subjects.length > 0"
|
2023-02-17 18:40:05 +01:00
|
|
|
class="uk-margin-xsmall-bottom">
|
2022-05-05 12:44:46 +02:00
|
|
|
<span class="uk-text-meta">Subject: </span>
|
|
|
|
<span *ngFor="let subject of result.subjects.slice(0,10) let i = index">
|
|
|
|
<span>{{subject}}</span>
|
|
|
|
<span>{{(i < (result.subjects.slice(0, 10).length - 1)) ? ", " : ""}}</span>
|
|
|
|
<span>{{(i == result.subjects.slice(0, 10).length - 1 && result.subjects.length > 10) ? "..." : ""}}</span>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- 4th section (description) -->
|
2023-02-17 18:40:05 +01:00
|
|
|
<div class="uk-text-small">
|
2022-05-05 12:44:46 +02:00
|
|
|
<!-- Description -->
|
|
|
|
<div *ngIf="result.description" class="multi-line-ellipsis lines-3">
|
2022-11-28 18:22:01 +01:00
|
|
|
<p class="uk-text-meta" [innerHTML]="result.description"></p>
|
2022-05-05 12:44:46 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-05-30 15:52:28 +02:00
|
|
|
<!-- 5th section(deposit only) -->
|
|
|
|
<div>
|
2023-02-17 18:40:05 +01:00
|
|
|
<span class="uk-flex uk-flex-right uk-margin-small-top">
|
2022-05-30 15:52:28 +02:00
|
|
|
<a *ngIf="result.websiteURL && promoteWebsiteURL" href="{{result.websiteURL}}" target="_blank" type="submit"
|
2023-02-16 15:33:40 +01:00
|
|
|
class="uk-float-right uk-margin-small-left uk-display-inline-block uk-text-uppercase uk-button uk-button-text">
|
2022-05-30 15:52:28 +02:00
|
|
|
<span class="uk-flex uk-flex-middle">
|
|
|
|
<icon name="file_upload" type="outlined" [flex]="true" class="uk-margin-small-right"></icon>
|
|
|
|
<span>Go to repository</span>
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
</div>
|
2022-05-05 12:44:46 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-03-15 12:13:28 +01:00
|
|
|
</div>
|
2022-05-05 12:44:46 +02:00
|
|
|
<!--&& loggedIn (card footer)-->
|
2023-02-17 18:40:05 +01:00
|
|
|
<div *ngIf="result.hostedBy_collectedFrom || result.measure?.bip.length || result.measure?.counts.length"
|
|
|
|
class="uk-text-small" [class.uk-visible@m]="!result.measure?.bip.length && result.measure?.counts.length" [ngClass]="{'uk-card-footer': isCard}">
|
|
|
|
<div class="uk-grid uk-grid-small uk-flex-between uk-flex-middle uk-grid-divider uk-margin-xsmall-bottom" uk-grid>
|
|
|
|
<div *ngIf="result.hostedBy_collectedFrom" class="uk-width-auto uk-visible@m">
|
|
|
|
<availableOn [availableOn]="result.hostedBy_collectedFrom" [source]="false"></availableOn>
|
|
|
|
</div>
|
|
|
|
<div *ngIf="hasActions" class="uk-width-expand uk-visible@m">
|
|
|
|
<span class="uk-grid uk-grid-small uk-child-width-auto uk-text-xsmall" uk-grid>
|
|
|
|
<span *ngIf="orcid">
|
|
|
|
<orcid-work *ngIf="showOrcid && result.identifiers && result.identifiers.size > 0"
|
|
|
|
[resultId]="result.relcanId" [resultTitle]="result.title"
|
|
|
|
[type]="result.resultType" [pageType]="'search'"
|
|
|
|
[putCodes]="result.orcidPutCodes" [givenPutCode]="true" [identifiers]="result.identifiers">
|
|
|
|
</orcid-work>
|
|
|
|
</span>
|
|
|
|
<span *ngIf="orcid" class="uk-width-expand uk-text-right">
|
|
|
|
<span *ngIf="result.orcidCreationDates?.length > 0" class="uk-display-inline-block">
|
|
|
|
<span class="uk-text-meta">
|
|
|
|
Added in ORCID:
|
2022-05-31 11:45:33 +02:00
|
|
|
</span>
|
2023-02-17 18:40:05 +01:00
|
|
|
<span *ngFor="let date of result.orcidCreationDates; let i=index">
|
|
|
|
{{date | date: 'dd MMM yyyy'}}
|
|
|
|
<span *ngIf="i < (result.orcidCreationDates.length - 1)">
|
|
|
|
&
|
|
|
|
</span>
|
2022-05-31 11:45:33 +02:00
|
|
|
</span>
|
2022-05-05 12:44:46 +02:00
|
|
|
</span>
|
2023-02-17 18:40:05 +01:00
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div *ngIf="result.measure?.bip.length || result.measure?.counts.length"
|
|
|
|
class="uk-text-xsmall uk-width-auto metrics uk-flex uk-flex-middle uk-flex-right uk-text-meta">
|
|
|
|
<ng-container *ngIf="result.measure?.bip.length">
|
|
|
|
<a class="uk-flex uk-flex-middle uk-link-reset">
|
|
|
|
<icon customClass="bip-icon-hover" [flex]="true" [ratio]="0.7" [name]="result.measure.bip[0].icon"></icon>
|
|
|
|
<span class="uk-margin-xsmall-left">{{result.measure.bip[0].value}}</span>
|
|
|
|
</a>
|
|
|
|
<div uk-drop="pos: top-left" class="uk-card uk-card-default uk-border uk-box-no-shadow uk-padding-small">
|
|
|
|
<table>
|
|
|
|
<tr *ngFor="let metric of result.measure.bip">
|
|
|
|
<td class="bip-icon"><icon [flex]="true" [ratio]="0.7" [name]="metric.icon"></icon></td>
|
|
|
|
<td class="uk-text-capitalize">{{metric.name}}</td>
|
|
|
|
<td class="uk-text-bolder">{{metric.value}}</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<div class="uk-margin-top uk-flex uk-flex-middle uk-flex-center">
|
|
|
|
<img class="uk-margin-xsmall-right" width="15" src="assets/common-assets/bip-minimal.svg" loading="lazy" alt="BIP!">
|
|
|
|
<span class="uk-text-uppercase">Powered by <span class="uk-text-bolder">BIP!</span></span>
|
2022-05-05 12:44:46 +02:00
|
|
|
</div>
|
2022-05-31 11:45:33 +02:00
|
|
|
</div>
|
2023-02-17 18:40:05 +01:00
|
|
|
</ng-container>
|
|
|
|
<ng-container *ngIf="result.measure?.counts.length">
|
|
|
|
<a class="uk-flex uk-flex-middle uk-margin-small-left uk-link-reset">
|
|
|
|
<icon class="text-usage-counts-hover" [flex]="true" [ratio]="0.8" [name]="result.measure.counts[0].icon"></icon>
|
|
|
|
<span class="uk-margin-xsmall-left">{{result.measure.counts[0].value}}</span>
|
2022-05-31 11:45:33 +02:00
|
|
|
</a>
|
2023-02-17 18:40:05 +01:00
|
|
|
<div uk-drop="pos: top-left" class="uk-card uk-card-default uk-border uk-box-no-shadow uk-padding-small">
|
|
|
|
<table>
|
|
|
|
<tr *ngFor="let metric of result.measure.counts">
|
|
|
|
<td class="text-usage-counts"><icon [flex]="true" [ratio]="0.7" [name]="metric.icon"></icon></td>
|
|
|
|
<td class="uk-text-capitalize">{{metric.name}}</td>
|
|
|
|
<td class="uk-text-bolder">{{metric.value}}</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<div class="uk-margin-top uk-flex uk-flex-middle uk-flex-center">
|
|
|
|
<span class="uk-text-uppercase">Powered by </span>
|
|
|
|
<img class="uk-margin-xsmall-left" width="15" src="assets/common-assets/logo-small-usage-counts.png" loading="lazy" alt="BIP!">
|
2022-05-05 12:44:46 +02:00
|
|
|
</div>
|
2023-02-17 18:40:05 +01:00
|
|
|
</div>
|
2022-05-05 12:44:46 +02:00
|
|
|
</ng-container>
|
2023-02-17 18:40:05 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-05-31 11:45:33 +02:00
|
|
|
</div>
|
2023-02-16 15:33:40 +01:00
|
|
|
</div>
|