mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* * Added unit tests to the about-github-link component. * Removed unused css * * Added unit tests to the about module and prodcut-version components * * After rebase
29 lines
1.2 KiB
HTML
29 lines
1.2 KiB
HTML
<div class="adf-github-link-container">
|
|
<h1 data-automation-id="adf-github-app-title">{{ application }}</h1>
|
|
|
|
<div>
|
|
<h3 data-automation-id="adf-github-source-code-title">{{ 'ABOUT.SOURCE_CODE.TITLE' | translate }}</h3>
|
|
<mat-card>
|
|
<p *ngIf="version" data-automation-id="adf-github-version">{{ 'ABOUT.VERSION' | translate }}: {{ version }}</p>
|
|
|
|
<div *ngIf="url">
|
|
<small>{{ 'ABOUT.SOURCE_CODE.DESCRIPTION' | translate }}</small>
|
|
<div data-automation-id="adf-github-url">
|
|
<a [href]="url" target="_blank">{{url}}</a>
|
|
</div>
|
|
</div>
|
|
</mat-card>
|
|
</div>
|
|
|
|
<h3 data-automation-id="adf-about-setting-title">{{ 'ABOUT.SERVER_SETTINGS.TITLE' | translate }}</h3>
|
|
<small>{{ 'ABOUT.SERVER_SETTINGS.DESCRIPTION' | translate }}</small>
|
|
<mat-card>
|
|
<p data-automation-id="adf-process-service-host">
|
|
{{ 'ABOUT.SERVER_SETTINGS.PROCESS_SERVICE_HOST' | translate: {value: bpmHost} }}
|
|
</p>
|
|
<p data-automation-id="adf-content-service-host">
|
|
{{ 'ABOUT.SERVER_SETTINGS.CONTENT_SERVICE_HOST' | translate: {value: ecmHost} }}
|
|
</p>
|
|
</mat-card>
|
|
</div>
|