-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* loading * remove extra changes * fixed of get in rules page * commit after review * remove acync dublication in the templates
- Loading branch information
Showing
11 changed files
with
107 additions
and
81 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
<div *ngIf="(platformInformation$ | async)?.companyInformationItems.length; else noInfo"> | ||
<div class="info-content"> | ||
<div> | ||
<h2 class="info-title">{{ (platformInformation$ | async).title }}</h2> | ||
</div> | ||
<div class="info-text"> | ||
<div *ngFor="let item of (platformInformation$ | async)?.companyInformationItems"> | ||
<p><strong>{{ item.sectionName }}</strong></p> | ||
<p>{{ item.description }}</p> | ||
<ng-container *ngIf="!(isLoading$ | async)"> | ||
<div *ngIf="(platformInformation$ | async)?.companyInformationItems.length; else noInfo"> | ||
<div class="info-content"> | ||
<div> | ||
<h2 class="info-title">{{ platformInformation?.title }}</h2> | ||
</div> | ||
<div class="info-text"> | ||
<div *ngFor="let item of platformInformation?.companyInformationItems"> | ||
<p><strong>{{ item.sectionName }}</strong></p> | ||
<p>{{ item.description }}</p> | ||
</div> | ||
</div> | ||
<p> | ||
Ваші пропозиції по покращенню роботи сервісу можна надсилати:<a href="mailto:pozashkillia@gmail.com" | ||
target="_blank"><span class="info-link"> Pozashkillia@gmail.com</span></a> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<ng-template #noInfo> | ||
<div class="info-no-content">Інформації поки немає</div> | ||
</ng-template> | ||
<ng-template #noInfo> | ||
<div class="info-no-content">Інформації поки немає</div> | ||
</ng-template> | ||
</ng-container> |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<div class="info_wrapper"> | ||
<div class="info"> | ||
<img class="info-picture" src="assets/images/header-about.png"> | ||
</div> | ||
<router-outlet></router-outlet> | ||
<div class="info"> | ||
<img class="info-picture" src="assets/images/header-about.png"> | ||
</div> | ||
<router-outlet></router-outlet> | ||
</div> |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
<div *ngIf="(platformRules$ | async)?.companyInformationItems.length; else noInfo"> | ||
<div class="info-content"> | ||
<div> | ||
<h2 class="info-title">{{ (platformRules$ | async)?.title }}</h2> | ||
</div> | ||
<div class="info-text"> | ||
<div *ngFor="let item of (platformRules$ | async)?.companyInformationItems"> | ||
<p><strong>{{ item.sectionName }}</strong></p> | ||
<p>{{ item.description }}</p> | ||
<ng-container *ngIf="!(isLoading$ | async)"> | ||
<div *ngIf="platformRules?.companyInformationItems.length; else noInfo"> | ||
<div class="info-content"> | ||
<div> | ||
<h2 class="info-title">{{ platformRules?.title }}</h2> | ||
</div> | ||
<div class="info-text"> | ||
<div *ngFor="let item of platformRules?.companyInformationItems"> | ||
<p><strong>{{ item.sectionName }}</strong></p> | ||
<p>{{ item.description }}</p> | ||
</div> | ||
</div> | ||
<p> | ||
Ваші пропозиції по покращенню роботи сервісу можна надсилати:<a href="mailto:pozashkillia@gmail.com" | ||
target="_blank"><span class="info-link"> Pozashkillia@gmail.com</span></a> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<ng-template #noInfo> | ||
<div class="info-no-content">Інформації поки немає</div> | ||
</ng-template> | ||
<ng-template #noInfo> | ||
<div class="info-no-content">Інформації поки немає</div> | ||
</ng-template> | ||
</ng-container> |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,18 @@ | ||
<div *ngIf="(platformSupport$ | async)?.companyInformationItems.length; else noInfo"> | ||
<div class="support-content"> | ||
<div> | ||
<h2 class="support-title">{{ (platformSupport$ | async).title }}</h2> | ||
</div> | ||
<div class="support-text"> | ||
<div *ngFor="let item of (platformSupport$ | async)?.companyInformationItems"> | ||
<p><strong>{{ item.sectionName }}</strong></p> | ||
<p>{{ item.description }}</p> | ||
<ng-container *ngIf="!(isLoading$ | async)"> | ||
<div *ngIf="platformSupport?.companyInformationItems.length; else noInfo"> | ||
<div class="support-content"> | ||
<div> | ||
<h2 class="support-title">{{ platformSupport.title }}</h2> | ||
</div> | ||
<div class="support-text"> | ||
<div *ngFor="let item of platformSupport?.companyInformationItems"> | ||
<p><strong>{{ item.sectionName }}</strong></p> | ||
<p>{{ item.description }}</p> | ||
</div> | ||
</div> | ||
<p class="support-contact"> У разі технічних питань писати на: | ||
<a class="support-link" href="mailto:pozashkillia@gmail.com" target="_blank"> | ||
pozashkillia@gmail.com | ||
</a> | ||
</p> | ||
<p class="support-contact"> У разі будь яких інших питань звертатися на: | ||
<a class="support-link" href="mailto:pozashkillyainfo@gmail.com" target="_blank"> | ||
pozashkillyainfo@gmail.com | ||
</a> | ||
</p> | ||
<p class="support-contact"> Або за телефоном: | ||
<a class="support-link" href="tel:+380977777777" alt="Телефон +380977777777">+38(097) 777 7 777</a> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<ng-template #noInfo> | ||
<div class="info-no-content">Інформації поки немає</div> | ||
</ng-template> | ||
<ng-template #noInfo> | ||
<div class="info-no-content">Інформації поки немає</div> | ||
</ng-template> | ||
</ng-container> |
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
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