gitlab-org--gitlab-foss/app/views/shared/empty_states/_issues.html.haml

24 lines
939 B
Text
Raw Normal View History

- button_path = local_assigns.fetch(:button_path, false)
- project_select_button = local_assigns.fetch(:project_select_button, false)
- has_button = button_path || project_select_button
.row.empty-state
2017-05-10 12:57:39 -04:00
.col-xs-12
.svg-content
= render 'shared/empty_states/icons/issues.svg'
2017-05-10 12:57:39 -04:00
.col-xs-12.text-center
.text-content
- if has_button && current_user
%h4
2016-12-20 12:20:41 -05:00
The Issue Tracker is the place to add things that need to be improved or solved in a project
%p
2016-12-20 12:20:41 -05:00
Issues can be bugs, tasks or ideas to be discussed.
2016-12-21 06:43:38 -05:00
Also, issues are searchable and filterable.
- if project_select_button
= render 'shared/new_project_item_select', path: 'issues/new', label: 'New issue'
- else
= link_to 'New issue', button_path, class: 'btn btn-new', title: 'New issue', id: 'new_issue_link'
- else
2017-04-13 12:33:32 -04:00
.text-center
%h4 There are no issues to show.