argos/dmp-frontend/src/app/ui/dashboard/recent-visited-activity/recent-visited-activity.com...

87 lines
2.4 KiB
HTML

<div class="card">
<div class="card-header card-header-plain">
<div class="card-desc">
<h4 class="card-title">
LAST VISITED DATA MANAGEMENT PLAN
</h4>
<p class="card-category">
The DMPs below are public under the ## license of
</p>
</div>
<a href="#" class="view-all">VIEW ALL</a>
</div>
<div class="card-body table-responsive">
<table class="table table-hover">
<thead class="text-default">
<th>NAME</th>
<th>TEMPLATE</th>
<th>PROJECT</th>
<th>ROLE</th>
<th>ORGANIZATION</th>
<th>STATUS</th>
<th>VISITED</th>
<th></th>
</thead>
<tbody *ngIf="dmpActivities!=null">
<tr (click)="redirect(activity.id, recentActivityTypeEnum.Dmp)" *ngFor="let activity of dmpActivities" style="cursor: pointer;">
<td>{{activity.label}}</td>
<td>
<ul
class="nav max-width-136 md-pills nav-justified pills-rounded pills-outline-blue"
>
<li class="nav-item">
<a
class="nav-link active"
data-toggle="tab"
href="#"
role="tab"
>Template name</a
>
</li>
</ul>
</td>
<td>Project Name</td>
<td>Role Name</td>
<td>Organization Name</td>
<td style="padding-left: 0px;" *ngIf="public">
<ul class="nav max-width-80 md-pills nav-justified pills-rounded pills-outline-green">
<li class="nav-item">
<a class="nav-link active" data-toggle="tab" href="#" role="tab">PUBLIC</a>
</li>
</ul>
</td>
<td style="padding-left: 0px;" *ngIf="!public">PRIVATE</td>
<td>{{activity.timestamp | date:'shortDate'}}</td>
<td><i class="material-icons more-icon">more_horiz</i></td>
</tr>
</tbody>
<tbody *ngIf="dmpActivities==null">
<tr>
<td>--</td>
<td>
<ul
class="nav max-width-136 md-pills nav-justified pills-rounded pills-outline-blue"
>
<li class="nav-item">
<a
class="nav-link active"
data-toggle="tab"
href="#"
role="tab"
>--</a
>
</li>
</ul>
</td>
<td>--</td>
<td>--</td>
<td>--</td>
<td>--</td>
<td>--</td>
<td><i class="material-icons more-icon">more_horiz</i></td>
</tr>
</tbody>
</table>
</div>
</div>