Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b868b814
Commit
b868b814
authored
Jun 08, 2016
by
Fatih Acet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert milestone_remaining_days helper.
parent
480d7468
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
10 deletions
+5
-10
app/helpers/milestones_helper.rb
app/helpers/milestones_helper.rb
+5
-10
No files found.
app/helpers/milestones_helper.rb
View file @
b868b814
...
...
@@ -54,18 +54,13 @@ module MilestonesHelper
end
end
def
milestone_remaining_days
(
milestone
,
withContentTag
=
true
)
def
milestone_remaining_days
(
milestone
)
if
milestone
.
expired?
withContentTag
?
content_tag
(
:strong
,
'expired'
)
:
'expired'
content_tag
(
:strong
,
'expired'
)
elsif
milestone
.
due_date
days
=
milestone
.
remaining_days
if
withContentTag
content
=
content_tag
(
:strong
,
days
)
content
<<
"
#{
'day'
.
pluralize
(
days
)
}
remaining"
else
"
#{
days
}
#{
'day'
.
pluralize
(
days
)
}
remaining"
end
days
=
milestone
.
remaining_days
content
=
content_tag
(
:strong
,
days
)
content
<<
"
#{
'day'
.
pluralize
(
days
)
}
remaining"
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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