debian-mirror-gitlab/app/views/projects/milestones/show.html.haml

27 lines
1.4 KiB
Text
Raw Normal View History

2019-03-02 22:35:43 +05:30
- add_to_breadcrumbs _('Milestones'), project_milestones_path(@project)
2018-03-17 18:26:18 +05:30
- breadcrumb_title @milestone.title
2019-03-02 22:35:43 +05:30
- page_title @milestone.title, _('Milestones')
2021-01-03 14:25:43 +05:30
- page_description @milestone.description_html
- add_page_specific_style 'page_bundles/milestone'
2021-06-08 01:23:25 +05:30
- add_page_startup_api_call milestone_tab_path(@milestone, 'issues', show_project_name: false)
2019-12-26 22:10:19 +05:30
= render 'shared/milestones/header', milestone: @milestone
= render 'shared/milestones/description', milestone: @milestone
2014-09-02 18:07:02 +05:30
2019-12-04 20:38:33 +05:30
= render_if_exists 'shared/milestones/burndown', milestone: @milestone, project: @project
2018-11-08 19:23:39 +05:30
2020-10-24 23:57:45 +05:30
- if can?(current_user, :read_issue, @project) && @milestone.total_issues_count == 0
2021-01-03 14:25:43 +05:30
.gl-alert.gl-alert-info.gl-mt-3.gl-mb-5{ data: { testid: 'no-issues-alert' } }
= sprite_icon('information-o', size: 16, css_class: 'gl-icon gl-alert-icon gl-alert-icon-no-title')
.gl-alert-body
%span= _('Assign some issues to this milestone.')
2020-04-08 14:13:33 +05:30
- elsif @milestone.complete? && @milestone.active?
2021-01-03 14:25:43 +05:30
.gl-alert.gl-alert-success.gl-mt-3.gl-mb-5{ data: { testid: 'all-issues-closed-alert' } }
= sprite_icon('check-circle', size: 16, css_class: 'gl-icon gl-alert-icon gl-alert-icon-no-title')
.gl-alert-body
%span= _('All issues for this milestone are closed. You may close this milestone now.')
2016-04-02 18:10:28 +05:30
2019-12-04 20:38:33 +05:30
= render 'shared/milestones/tabs', milestone: @milestone
= render 'shared/milestones/sidebar', milestone: @milestone, project: @project, affix_offset: 153