summaryrefslogtreecommitdiffstats
path: root/cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-from-database/search-from-database.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-from-database/search-from-database.component.html')
-rw-r--r--cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-from-database/search-from-database.component.html21
1 files changed, 19 insertions, 2 deletions
diff --git a/cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-from-database/search-from-database.component.html b/cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-from-database/search-from-database.component.html
index ca260394b..6683dba59 100644
--- a/cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-from-database/search-from-database.component.html
+++ b/cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-from-database/search-from-database.component.html
@@ -32,7 +32,24 @@ limitations under the License.
</mat-autocomplete> -->
</mat-form-field>
</form>
-<mat-grid-list cols="8">
+<div class="searchcontainer">
+ <div class="flexBox">
+ <div *ngFor="let option of options" style="position: relative !important;width:20% !important">
+ <mat-card class="example-card">
+ <mat-card-content class="card-content">
+ {{option.blueprintModel.artifactName}}
+ <br>{{option.blueprintModel.updatedBy}}
+ </mat-card-content>
+ <mat-card-actions class="flexBox">
+ <button mat-menu-item (click)="editCBA(option.blueprintModel.artifactName,edit)">Edit</button>
+ <button mat-menu-item (click)="editCBA(option.blueprintModel.artifactName,clone)">Clone</button>
+ <button mat-menu-item (click)="editCBA(option.blueprintModel.artifactName,info)">Info</button>
+ </mat-card-actions>
+ </mat-card>
+ </div>
+ </div>
+</div>
+<!-- <mat-grid-list cols="8">
<mat-grid-tile *ngFor="let option of options">
<mat-card class="example-card">
<mat-card-content class="card-content">
@@ -44,4 +61,4 @@ limitations under the License.
</mat-card-actions>
</mat-card>
</mat-grid-tile>
-</mat-grid-list> \ No newline at end of file
+</mat-grid-list> --> \ No newline at end of file