viewdata.component.html 4.01 KB
Newer Older
Natthaphong Malaphan's avatar
Natthaphong Malaphan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
<!-- <td>{{ review.catagory }}</td>
            <td>{{ review.namemovie }}</td>
            <td>{{ review.title }}</td>
            <td>{{ review.description }}</td> -->
<!-- <td>
              <div>
                <button
                  mat-raised-button
                  [routerLink]="['/viewdata', review._id]"
                  style="background-color: #1cbe3f"
                >
                  ดูข้อมูล
                </button>
              </div>
            </td> -->
<!-- <td>
              <button
                *ngIf="user_data._id == review.user_id"
                mat-raised-button
                [routerLink]="['/edit', review._id]"
                style="background-color: #ffa000"
              >
                แก้ไข
              </button>
            </td>
            <td>
              <a
                role="button"
                *ngIf="user_data._id == review.user_id"
                mat-raised-button
                (click)="deleteData(review._id)"
                style="background-color: #d32f2f"
                >ลบ</a
              >
            </td> -->
<div
  style="
    padding-top: 5%;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 10%;
  "
>
  <div class="row">
    <div class="card-content leftcolumn">
      <div class="row">
        <span>
          <a routerLink="/">
            <mat-icon>keyboard_backspace</mat-icon>
          </a>
        </span>
      </div>
      <div class="row">
        <div class="content-topic">
Athip Sirisawetkunwong's avatar
Athip Sirisawetkunwong committed
55 56
          <div>
            <div>
Natthaphong Malaphan's avatar
Natthaphong Malaphan committed
57 58 59 60
              <mat-card
                ><mat-card-title>{{ data.title }}</mat-card-title>
                <mat-card-subtitle
                  >{{ data.catagory }}&nbsp;|&nbsp;{{
Athip Sirisawetkunwong's avatar
Athip Sirisawetkunwong committed
61
                    data.createdAt | date: "dd-MM-yyyy"
Natthaphong Malaphan's avatar
Natthaphong Malaphan committed
62 63 64 65 66
                  }}</mat-card-subtitle
                >
                <mat-card-content>
                  {{ data.description }}
                </mat-card-content>
Athip Sirisawetkunwong's avatar
Athip Sirisawetkunwong committed
67 68 69 70 71 72 73
                <mat-card-footer
                  style="
                    color: rgb(165, 165, 165);
                    margin-left: 2px;
                    padding-bottom: 2%;
                  "
                  >By &nbsp;{{ data.user_name }}</mat-card-footer
Natthaphong Malaphan's avatar
Natthaphong Malaphan committed
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
                >
              </mat-card>
            </div>
          </div>
        </div>
      </div>
    </div>
    <div class="card-content rightcolumn">
      <br />
      <div class="row">
        <div class="content-topic">
          <div style="padding: 10px">
            <section fxLayout="row" fxLayoutGap="5%" class="stycky">
              <article class="progress-card" fxFlex="30">
                <mat-card fxLayout="column" fxLayoutAlign="center center">
                  <mat-card-title><h2>เครื่องมือเสริม</h2></mat-card-title>
                  <mat-card-content>
                    <mat-list>
                      <mat-list-item>
                        <button
Athip Sirisawetkunwong's avatar
Athip Sirisawetkunwong committed
94
                          *ngIf="user_id._id == data.user_id"
Natthaphong Malaphan's avatar
Natthaphong Malaphan committed
95 96 97 98 99 100 101 102 103 104
                          class="box"
                          mat-raised-button
                          [routerLink]="['/edit', data._id]"
                          style="background-color: #ffa000"
                        >
                          <mat-icon>create_port</mat-icon>แก้ไข
                        </button></mat-list-item
                      >
                      <mat-list-item
                        ><button
Athip Sirisawetkunwong's avatar
Athip Sirisawetkunwong committed
105
                          *ngIf="user_id._id == data.user_id"
Natthaphong Malaphan's avatar
Natthaphong Malaphan committed
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
                          class="box"
                          mat-raised-button
                          (click)="deleteData(data._id)"
                          style="background-color: #d32f2f"
                        >
                          <mat-icon>delete</mat-icon>ลบ
                        </button></mat-list-item
                      >
                    </mat-list>
                  </mat-card-content>
                </mat-card>
              </article>
            </section>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>