next button commented
This commit is contained in:
parent
e455072536
commit
e7d53aadee
|
@ -9,7 +9,7 @@
|
|||
<div class="col"></div>
|
||||
</div>
|
||||
|
||||
<div class="row" style="margin-top: 30px">
|
||||
<div class="row" style="margin-top: 30px" *ngIf="this.isAuthenticated()">
|
||||
<div class="col-1"></div>
|
||||
<div class="col">
|
||||
<app-quick-wizard-create-add-component></app-quick-wizard-create-add-component>
|
||||
|
@ -22,11 +22,7 @@
|
|||
<div class="row" style="margin-top: 30px">
|
||||
<div class="col"></div>
|
||||
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
|
||||
<app-dashboard-card title={{dashboardStatisticsData?.totalDataManagementPlanCount}} headerIcon="mode_edit"
|
||||
[category]="this.isAuthenticated() ? 'DASHBOARD.MY-DMPS' : 'DASHBOARD.DMPS' " routelLink='/plans'
|
||||
buttonRedirectLink="/plans/new" buttonTitle="Create New DMP" footerIcon="open_in_new"
|
||||
linearColor="linear-gradient(60deg, #ef5350, #e53935)"
|
||||
boxShadow="0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(244, 67, 54, 0.4)">
|
||||
<app-dashboard-card title={{dashboardStatisticsData?.totalDataManagementPlanCount}} headerIcon="mode_edit" [category]="this.isAuthenticated() ? 'DASHBOARD.MY-DMPS' : 'DASHBOARD.DMPS' " routelLink='/plans' buttonRedirectLink="/plans/new" buttonTitle="Create New DMP" footerIcon="open_in_new" linearColor="linear-gradient(60deg, #ef5350, #e53935)" boxShadow="0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(244, 67, 54, 0.4)">
|
||||
</app-dashboard-card>
|
||||
<mat-card *ngIf="this.isAuthenticated()" class="example-card">
|
||||
<mat-card-header>
|
||||
|
@ -36,8 +32,7 @@
|
|||
</mat-card-header>
|
||||
<mat-card-content>
|
||||
<mat-nav-list *ngIf="dmpActivities!=null">
|
||||
<mat-list-item (click)="redirect(activity.id, recentActivityTypeEnum.Dmp)"
|
||||
*ngFor="let activity of dmpActivities">
|
||||
<mat-list-item (click)="redirect(activity.id, recentActivityTypeEnum.Dmp)" *ngFor="let activity of dmpActivities">
|
||||
<p mat-line>
|
||||
{{activity.label}}
|
||||
</p>
|
||||
|
@ -50,11 +45,7 @@
|
|||
</mat-card>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12 ">
|
||||
<app-dashboard-card title={{dashboardStatisticsData?.totalProjectCount}} headerIcon="list"
|
||||
[category]="this.isAuthenticated() ? 'DASHBOARD.MY-PROJECTS' : 'DASHBOARD.PROJECTS' "
|
||||
routelLink='/projects' buttonRedirectLink="/projects/new" buttonTitle="Create New Project"
|
||||
footerIcon="open_in_new" linearColor="linear-gradient(60deg, #ffa726, #fb8c00)"
|
||||
boxShadow="0 4px 20px 0 rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(255, 152, 0, 0.4)">
|
||||
<app-dashboard-card title={{dashboardStatisticsData?.totalProjectCount}} headerIcon="list" [category]="this.isAuthenticated() ? 'DASHBOARD.MY-PROJECTS' : 'DASHBOARD.PROJECTS' " routelLink='/projects' buttonRedirectLink="/projects/new" buttonTitle="Create New Project" footerIcon="open_in_new" linearColor="linear-gradient(60deg, #ffa726, #fb8c00)" boxShadow="0 4px 20px 0 rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(255, 152, 0, 0.4)">
|
||||
</app-dashboard-card>
|
||||
<mat-card *ngIf="this.isAuthenticated()" class="example-card">
|
||||
<mat-card-header>
|
||||
|
@ -64,8 +55,7 @@
|
|||
</mat-card-header>
|
||||
<mat-card-content>
|
||||
<mat-nav-list *ngIf="projectActivities!=null">
|
||||
<mat-list-item (click)="redirect(activity.id, recentActivityTypeEnum.Project)"
|
||||
*ngFor="let activity of projectActivities">
|
||||
<mat-list-item (click)="redirect(activity.id, recentActivityTypeEnum.Project)" *ngFor="let activity of projectActivities">
|
||||
<p mat-line>
|
||||
{{activity.label}}
|
||||
</p>
|
||||
|
@ -78,11 +68,7 @@
|
|||
</mat-card>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
|
||||
<app-dashboard-card title={{dashboardStatisticsData?.totalDataSetCount}} headerIcon="subject"
|
||||
[category]="this.isAuthenticated() ? 'DASHBOARD.MY-DATASETS' : 'DASHBOARD.DATASETS'"
|
||||
routelLink='/datasets' buttonRedirectLink="/datasets/new" buttonTitle="Create New Dataset"
|
||||
footerIcon="open_in_new" linearColor="linear-gradient(60deg, #26c6da, #00acc1)"
|
||||
boxShadow="0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(0, 188, 212, 0.4)">
|
||||
<app-dashboard-card title={{dashboardStatisticsData?.totalDataSetCount}} headerIcon="subject" [category]="this.isAuthenticated() ? 'DASHBOARD.MY-DATASETS' : 'DASHBOARD.DATASETS'" routelLink='/datasets' buttonRedirectLink="/datasets/new" buttonTitle="Create New Dataset" footerIcon="open_in_new" linearColor="linear-gradient(60deg, #26c6da, #00acc1)" boxShadow="0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(0, 188, 212, 0.4)">
|
||||
</app-dashboard-card>
|
||||
<mat-card *ngIf="this.isAuthenticated()" class="example-card">
|
||||
<mat-card-header>
|
||||
|
@ -92,8 +78,7 @@
|
|||
</mat-card-header>
|
||||
<mat-card-content>
|
||||
<mat-nav-list *ngIf="datasetActivities!=null">
|
||||
<mat-list-item (click)="redirect(activity.id, recentActivityTypeEnum.Dataset)"
|
||||
*ngFor="let activity of datasetActivities">
|
||||
<mat-list-item (click)="redirect(activity.id, recentActivityTypeEnum.Dataset)" *ngFor="let activity of datasetActivities">
|
||||
<p mat-line>
|
||||
{{activity.label}}
|
||||
</p>
|
||||
|
@ -107,4 +92,4 @@
|
|||
</div>
|
||||
<div class="col"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -40,10 +40,10 @@
|
|||
<mat-form-field *ngIf="compositeFieldFormGroup.get('hasCommentField').value" class="col-12" [formGroup]="compositeFieldFormGroup">
|
||||
<input matInput formControlName="commentFieldValue" placeholder="comment">
|
||||
</mat-form-field>
|
||||
<div class="col"></div>
|
||||
<!-- <div class="col"></div>
|
||||
<button class="col-auto" mat-icon-button type="button" (click)="next(compositeField)">
|
||||
<mat-icon>expand_more</mat-icon>
|
||||
</button>
|
||||
</button> -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -9,8 +9,6 @@ import { BreadcrumbItem } from "../../misc/breadcrumb/definition/breadcrumb-item
|
|||
import { IBreadCrumbComponent } from "../../misc/breadcrumb/definition/IBreadCrumbComponent";
|
||||
import { DatasetDescriptionFormEditorModel } from "../../misc/dataset-description-form/dataset-description-form.model";
|
||||
import { QuickWizardDatasetDescriptionModel } from "./quick-wizard-dataset-description-model";
|
||||
import { IfStmt } from "@angular/compiler";
|
||||
import { TranslateService } from "@ngx-translate/core";
|
||||
|
||||
@Component({
|
||||
selector: 'app-dataset-editor-wizard-component',
|
||||
|
|
Loading…
Reference in New Issue