-
Notifications
You must be signed in to change notification settings - Fork 301
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into chore/posting-header-footer-client-migration
- Loading branch information
Showing
36 changed files
with
558 additions
and
309 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
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
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
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
34 changes: 34 additions & 0 deletions
34
...main/webapp/app/lecture/close-edit-lecture-dialog/close-edit-lecture-modal.component.html
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<div class="modal-header"> | ||
<h4 class="modal-title" jhiTranslate="artemisApp.lecture.dismissChangesModal.title"></h4> | ||
</div> | ||
<div class="modal-body"> | ||
<span jhiTranslate="artemisApp.lecture.dismissChangesModal.message" class="fw-bold"></span><br /> | ||
<!-- check if translation should be singular or plural, to be exchanged | ||
with computed signals once input signals are supported with ng-bootstrap modals --> | ||
@if (hasUnsavedChangesInTitleSection && hasUnsavedChangesInPeriodSection) { | ||
<span jhiTranslate="artemisApp.lecture.dismissChangesModal.sectionsThatContainUnsavedChangesPlural"></span> | ||
} @else { | ||
<span jhiTranslate="artemisApp.lecture.dismissChangesModal.sectionsThatContainUnsavedChangesSingular"></span> | ||
} | ||
<ul> | ||
@if (hasUnsavedChangesInTitleSection) { | ||
<li> | ||
<span jhiTranslate="artemisApp.lecture.wizardMode.steps.titleStepTitle"></span> | ||
</li> | ||
} | ||
@if (hasUnsavedChangesInPeriodSection) { | ||
<li> | ||
<span jhiTranslate="artemisApp.lecture.wizardMode.steps.periodStepTitle"></span> | ||
</li> | ||
} | ||
</ul> | ||
</div> | ||
<div class="modal-footer"> | ||
<button class="btn btn-default" (click)="closeWindow(true)"> | ||
<span jhiTranslate="entity.action.discardChanges"></span> | ||
</button> | ||
<button type="button" (click)="closeWindow(false)" class="btn btn-primary" type="submit"> | ||
<fa-icon [icon]="faTimes" /> | ||
<span class="ms-1" jhiTranslate="entity.action.cancel"></span> | ||
</button> | ||
</div> |
Oops, something went wrong.