Created
April 3, 2018 11:16
-
-
Save machariamarigi/c8c657d5020fb05b80e79b476e965092 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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