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
0
Merge Requests
0
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
Jérome Perrin
gitlab-ce
Commits
77731802
Commit
77731802
authored
Feb 25, 2016
by
Rubén Dávila
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Show days remaining instead of elapsed time for Milestone.
parent
6aa50165
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
14 deletions
+17
-14
app/assets/stylesheets/pages/milestone.scss
app/assets/stylesheets/pages/milestone.scss
+1
-1
app/helpers/milestones_helper.rb
app/helpers/milestones_helper.rb
+11
-0
app/models/milestone.rb
app/models/milestone.rb
+4
-10
app/views/projects/milestones/show.html.haml
app/views/projects/milestones/show.html.haml
+1
-3
No files found.
app/assets/stylesheets/pages/milestone.scss
View file @
77731802
...
...
@@ -39,7 +39,7 @@ li.milestone {
margin-right
:
10px
;
}
.
time-elapsed
{
.
remaining-days
{
color
:
$orange-light
;
}
}
...
...
app/helpers/milestones_helper.rb
View file @
77731802
...
...
@@ -36,4 +36,15 @@ module MilestonesHelper
options_from_collection_for_select
(
grouped_milestones
,
'name'
,
'title'
,
params
[
:milestone_title
])
end
def
milestone_remaining_days
(
milestone
)
days
=
milestone
.
remaining_days
if
days
==
0
content_tag
(
:strong
,
'expired'
)
elsif
days
.
to_i
>
0
content
=
content_tag
(
:strong
,
days
)
content
<<
"
#{
'day'
.
pluralize
(
days
)
}
remaining"
end
end
end
app/models/milestone.rb
View file @
77731802
...
...
@@ -110,17 +110,11 @@ class Milestone < ActiveRecord::Base
0
end
# Returns the elapsed time (in percent) since the Milestone creation date until today.
# If the Milestone doesn't have a due_date then returns 0 since we can't calculate the elapsed time.
# If the Milestone is overdue then it returns 100%.
def
percent_time_used
return
0
unless
due_date
return
100
if
expired?
def
remaining_days
return
nil
if
due_date
.
nil?
return
0
if
due_date
<
Date
.
today
duration
=
((
created_at
-
due_date
.
to_datetime
)
/
1
.
day
)
days_elapsed
=
((
created_at
-
Time
.
now
)
/
1
.
day
)
((
days_elapsed
.
to_f
/
duration
)
*
100
).
floor
(
due_date
-
Date
.
today
).
to_i
end
def
expires_at
...
...
app/views/projects/milestones/show.html.haml
View file @
77731802
...
...
@@ -60,9 +60,7 @@
%strong
==
#{
@milestone
.
percent_complete
}
%
complete
%span
.milestone-stat
%span
.time-elapsed
%strong
==
#{
@milestone
.
percent_time_used
}
%
time elapsed
%span
.remaining-days
=
milestone_remaining_days
(
@milestone
)
%span
.pull-right.tab-issues-buttons
-
if
can?
(
current_user
,
:create_issue
,
@project
)
=
link_to
new_namespace_project_issue_path
(
@project
.
namespace
,
@project
,
issue:
{
milestone_id:
@milestone
.
id
}),
class:
"btn btn-grouped"
,
title:
"New Issue"
do
...
...
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