Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
best-practical
rt
Commits
aa1bd18b
Commit
aa1bd18b
authored
Sep 02, 2014
by
Christian Loos
Browse files
add an overdue class to Due dates in ticket lists
This treats Due the same as DueRelative in ticket lists.
parent
8c84e38b
Changes
1
Hide whitespace changes
Inline
Side-by-side
share/html/Elements/RT__Ticket/ColumnMap
View file @
aa1bd18b
...
...
@@ -237,7 +237,15 @@ $COLUMN_MAP = {
Due => {
title => 'Due', # loc
attribute => 'Due',
value => sub { return $_[0]->DueObj->AsString }
value => sub {
my $date = $_[0]->DueObj;
# Highlight the date if it was due in the past, and it's still active
if ( $date && $date->IsSet && $date->Diff < 0 && $_[0]->QueueObj->IsActiveStatus($_[0]->Status)) {
return (\'<span class="overdue">' , $date->AsString , \'</span>');
} else {
return $date->AsString;
}
}
},
Resolved => {
title => 'Resolved', # loc
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment