mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
50 lines
2.1 KiB
HTML
50 lines
2.1 KiB
HTML
<div class="adf-about-container">
|
|
<h3>{{ 'ABOUT.SERVER_SETTINGS.TITLE' | translate }}</h3>
|
|
<mat-list>
|
|
<small>{{ 'ABOUT.SERVER_SETTINGS.DESCRIPTION' | translate }}</small>
|
|
<mat-list-item>
|
|
<h4 matLine> {{ 'ABOUT.SERVER_SETTINGS.PROCESS_SERVICE_HOST' | translate: { value: bpmHost } }}</h4>
|
|
</mat-list-item>
|
|
<mat-divider></mat-divider>
|
|
<mat-list-item>
|
|
<h4 matLine>{{ 'ABOUT.SERVER_SETTINGS.PROCESS_SERVICE_HOST' | translate: { value: ecmHost } }}</h4>
|
|
</mat-list-item>
|
|
</mat-list>
|
|
|
|
<h3>{{ 'ABOUT.VERSIONS.TITLE' | translate }}</h3>
|
|
<div *ngIf="bpmVersion">
|
|
<h3>{{ 'ABOUT.VERSIONS.PROCESS_SERVICE' | translate }}</h3>
|
|
<label> {{ 'ABOUT.VERSIONS.LABELS.EDITION' | translate }} </label> {{ bpmVersion.edition }}
|
|
<p></p>
|
|
<label> {{ 'ABOUT.VERSIONS.LABELS.VERSION' | translate }} </label> {{ bpmVersion.majorVersion }}.{{ bpmVersion.minorVersion }}.{{ bpmVersion.revisionVersion }}
|
|
</div>
|
|
<div *ngIf="ecmVersion">
|
|
<h3>{{ 'ABOUT.VERSIONS.CONTENT_SERVICE' | translate }}</h3>
|
|
<label>{{ 'ABOUT.VERSIONS.LABELS.EDITION' | translate }}</label> {{ ecmVersion.edition }}
|
|
<p></p>
|
|
<label> {{ 'ABOUT.VERSIONS.LABELS.VERSION' | translate }} </label> {{ ecmVersion.version.display }}
|
|
<p></p>
|
|
<h4>{{ 'ABOUT.VERSIONS.LABELS.LICENSE' | translate }}</h4>
|
|
<adf-datatable [data]="license"></adf-datatable>
|
|
|
|
<h4> {{ 'ABOUT.VERSIONS.LABELS.STATUS' | translate }}</h4>
|
|
<adf-datatable [data]="status"></adf-datatable>
|
|
|
|
<h4>{{ 'ABOUT.VERSIONS.LABELS.MODULES' | translate }}</h4>
|
|
|
|
<adf-datatable [data]="modules"></adf-datatable>
|
|
</div>
|
|
|
|
<div *ngIf="githubUrlCommitAlpha">
|
|
<h3>{{ 'ABOUT.SOURCE_CODE.TITLE' | translate }}</h3>
|
|
<small>{{ 'ABOUT.SOURCE_CODE.DESCRIPTION' | translate }}</small>
|
|
<div>
|
|
<a [href]="githubUrlCommitAlpha">{{githubUrlCommitAlpha}}</a>
|
|
</div>
|
|
</div>
|
|
|
|
<h3>{{ 'ABOUT.PACKAGES.TITLE' | translate }}</h3>
|
|
<small>{{ 'ABOUT.PACKAGES.DESCRIPTION' | translate }}</small>
|
|
<adf-datatable [data]="data"></adf-datatable>
|
|
</div>
|