Skip to content

Instantly share code, notes, and snippets.

@machariamarigi
Created April 3, 2018 11:16
Show Gist options
  • Save machariamarigi/c8c657d5020fb05b80e79b476e965092 to your computer and use it in GitHub Desktop.
Save machariamarigi/c8c657d5020fb05b80e79b476e965092 to your computer and use it in GitHub Desktop.
<div class="container">
<div class="wrapper" *ngIf="skill; else noSkill">
<section class="main-header">
<ul class="main-header-bar">
<div class='back-img' (click)="goToPreviousPage()">
<img src="assets/images/circled-left-ffffff-32 copy.png">
</div>
<li>
<span class="main-header-title">
ALL {{ skill?.name | uppercase }} MENTORS
<hr class="indicator-active">
</span>
</li>
<li>
<div class="main-header-buttons" *ngIf="skillMentorsDetails?.length > 0">
<app-export-button (exportEvent)="exportDetailsToCsv()"></app-export-button>
</div>
</li>
</ul>
</section>
<section>
<app-mentor-records
[skillMentorsDetails]="skillMentorsDetails"
></app-mentor-records>
</section>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment