generated from itk-dev/itk-base-template-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor changes and bugfixes #33
Merged
Merged
Changes from 21 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
3333be2
Added borders for sticky tds
jeppekroghitk e152982
Removed tickettype from table
jeppekroghitk c0ae2b2
Added task to tippy popover
jeppekroghitk 99b0dca
Added task text only when todo is not a task, and corrected borders
jeppekroghitk fe58611
Added include weekend checkbox when copying entries
jeppekroghitk 9ce4e1e
Added weekends to be optional when copying entry forward
jeppekroghitk 9e67dfa
Coding standards
jeppekroghitk b9837ff
Submit form when writing comment on timelog
jeppekroghitk 1ff79d9
Unchecking include weekends when closing modal
jeppekroghitk 8d57331
Updated changelog
jeppekroghitk 0ba4797
Coding standards
jeppekroghitk df61a5b
Reverted phpstan config
jeppekroghitk d48ab16
Coding standards
jeppekroghitk fd3ae1a
Increased memory limit for code-analysis action
jeppekroghitk cc5dfc9
Formatted blade
jeppekroghitk a5c8e23
Formatted blade
jeppekroghitk 157669c
Fixed error in blade
jeppekroghitk 436f305
Changed approach when deleting timelog, to handling things frontend
jeppekroghitk d34e5de
Updated changelog
jeppekroghitk b65e0e9
Coding standards
jeppekroghitk 187fd0a
Formatted blade
jeppekroghitk 38d6db9
Added translations and comment describing choice regarding displaying…
jeppekroghitk 9e41789
Coding standards
jeppekroghitk 02fde95
Formatted blade
jeppekroghitk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,8 @@ | |
class="timetable-to-today btn btn-default">{{ __('timeTable.button_show_this_week') }}</button> | ||
</div> | ||
</form> | ||
<p class="recently-deleted-timelog-info hidden"><i class="fas fa-info-circle"></i> | ||
{{ __('timeTable.update_to_show_correct_sums') }}</p> | ||
<div class="timetable-scroll-container"> | ||
<table id="timetable" class="table"> | ||
<thead> | ||
|
@@ -67,12 +69,9 @@ class="timetable-to-today btn btn-default">{{ __('timeTable.button_show_this_wee | |
@foreach ($timesheetsByTicket as $ticketId => $timesheet) | ||
<tr data-ticketId="{{ $ticketId }}"> | ||
<td class="ticket-title" scope="row"><a href="{{ $timesheet['ticketLink'] }}" | ||
data-tippy-content="#{{ $timesheet['ticketId'] }} - {{ $timesheet['ticketTitle'] }}" | ||
data-tippy-content="#{{ $timesheet['ticketId'] }} - {{ $timesheet['ticketTitle'] }} {{ $timesheet['ticketType'] !== 'task' ? '[ ' . $timesheet['ticketType'] . ' ]' : '' }} " | ||
data-tippy-placement="top">{{ $timesheet['ticketTitle'] }}</a> | ||
<span>{{ $timesheet['projectName'] }}</span> | ||
<?php if ($timesheet['ticketType'] !== "task"): ?> | ||
<small>(<?php echo $timesheet['ticketType']; ?>)</small> | ||
<?php endif; ?> | ||
</td> | ||
<?php $rowTotal = 0; ?> | ||
<!-- initializing row total --> | ||
|
@@ -127,10 +126,9 @@ class="timetable-edit-entry {{ $weekendClass }} {{ $todayClass }} {{ $newWeekCla | |
</tr> | ||
@else | ||
<!-- A little something for when the week has no logs --> | ||
<tr class="empty-row""> | ||
<td class=" empty-row" | ||
colspan="{{ count($weekDates) + 2 }}"> | ||
{{ __("It seems the 'WORK-IT' fairy forgot to sprinkle her magic dust here! 🧚🪄✨") }} | ||
<tr class="empty-row"> | ||
<td class="empty-row" colspan="{{ count($weekDates) + 2 }}"> | ||
{{ __("It seems the 'WORK-IT' fairy forgot to sprinkle her magic dust here! 🧚🪄✨") }} | ||
</td> | ||
</tr> | ||
<tr> | ||
|
@@ -222,9 +220,15 @@ class="timetable-modal-submit btn btn-primary">{{ __('timeTable.button_modal_sav | |
<input type="hidden" name="entryCopyToDate" /> | ||
<p class="entry-copy-headline"></p> | ||
<p class="entry-copy-text"></p> | ||
<div class="entry-copy-overwrite-checkbox"> | ||
<input type="checkbox" name="entryCopyOverwrite" id="entry-copy-overwrite" /> | ||
<label for="entry-copy-overwrite"><small>Overskriv allerede registrerede felter</small></label> | ||
<div class="entry-copy-checkboxes"> | ||
<div class="entry-copy-overwrite-checkbox"> | ||
<input type="checkbox" name="entryCopyOverwrite" id="entry-copy-overwrite" /> | ||
<label for="entry-copy-overwrite"><small>Overskriv allerede registrerede felter</small></label> | ||
</div> | ||
<div class="entry-copy-weekend-checkbox"> | ||
<input type="checkbox" name="entryCopyWeekend" id="entry-copy-weekend" /> | ||
<label for="entry-copy-weekend"><small>Inkluder weekender</small></label> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. {{ __("Inkluder weekender") }} |
||
</div> | ||
</div> | ||
<div class="buttons flex-container gap-1"> | ||
<button type="button" | ||
|
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{{ __("Overskriv allerede registrerede felter") }}