BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
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
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
10 deletions
+5
-10
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