7e88b242ce
Fix copy in Issue Tracker empty state See merge request !8202
22 lines
1,007 B
Text
22 lines
1,007 B
Text
- 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
|
|
.pull-right.col-xs-12{ class: "#{'col-sm-6' if has_button}" }
|
|
.svg-content
|
|
= render 'shared/empty_states/icons/issues.svg'
|
|
.col-xs-12{ class: "#{'col-sm-6' if has_button}" }
|
|
.text-content
|
|
- if has_button && current_user
|
|
%h4
|
|
The Issue Tracker is the place to add things that need to be improved or solved in a project
|
|
%p
|
|
Issues can be bugs, tasks or ideas to be discussed.
|
|
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
|
|
%h4.text-center There are no issues to show.
|