gitlabhq/app/views/milestones/show.html.haml

68 lines
1.7 KiB
Plaintext
Raw Normal View History

2012-04-08 23:28:58 +02:00
%h3
Milestone ##{@milestone.id}
%small
= @milestone.expires_at
%span.right
= link_to 'Browse Issues', project_issues_path(@milestone.project, milestone_id: @milestone.id), class: "btn edit-milestone-link small grouped"
2012-04-08 23:28:58 +02:00
- if can?(current_user, :admin_milestone, @project)
= link_to edit_project_milestone_path(@project, @milestone), class: "btn small grouped" do
2012-05-24 08:23:25 +02:00
%i.icon-edit
2012-04-08 23:28:58 +02:00
Edit
.back_link
= link_to project_milestones_path(@project) do
2012-04-08 23:28:58 +02:00
← To milestones list
.main_box
.top_box_content
%h5
- if @milestone.closed
.alert-message.error.status_info Closed
- else
2012-04-08 23:28:58 +02:00
.alert-message.success.status_info Open
2012-09-20 02:21:12 +02:00
= gfm escape_once(@milestone.title)
2012-05-24 08:23:25 +02:00
%small.right= @milestone.expires_at
2012-04-08 23:28:58 +02:00
.middle_box_content
2012-05-24 08:23:25 +02:00
%h5
Progress:
%small
#{@milestone.issues.opened.count} open
–
#{@milestone.issues.closed.count} closed
.progress.progress-success
.bar{style: "width: #{@milestone.percent_complete}%;"}
2012-04-08 23:28:58 +02:00
- if @milestone.description.present?
.bottom_box_content
= preserve do
= markdown @milestone.description
2012-04-08 23:28:58 +02:00
.row
.span6
2012-09-03 20:53:16 +02:00
%table
2012-05-24 08:23:25 +02:00
%thead
%th Open Issues
- @issues.each do |issue|
%tr
%td
= link_to [@project, issue] do
2012-05-24 08:23:25 +02:00
%span.badge.badge-info ##{issue.id}
2012-07-22 14:33:03 +02:00
–
= link_to_gfm truncate(issue.title, length: 60), [@project, issue]
%br
= paginate @issues, theme: "gitlab"
.span6
2012-09-03 20:53:16 +02:00
%table
2012-05-24 08:23:25 +02:00
%thead
%th Participants
- @users.each do |user|
%tr
%td
= image_tag gravatar_icon(user.email, 24), width: "24"
2012-05-24 08:23:25 +02:00
 
= user.name