debian-mirror-gitlab/app/views/shared/empty_states/_issues.html.haml

28 lines
1.3 KiB
Text
Raw Normal View History

2017-08-17 22:00:37 +05:30
- 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-09-10 17:25:29 +05:30
.col-xs-12
2017-08-17 22:00:37 +05:30
.svg-content
2018-03-17 18:26:18 +05:30
= image_tag 'illustrations/issues.svg'
.col-xs-12
2017-08-17 22:00:37 +05:30
.text-content
2018-03-17 18:26:18 +05:30
- if current_user
2017-08-17 22:00:37 +05:30
%h4
2018-03-17 18:26:18 +05:30
= _("The Issue Tracker is the place to add things that need to be improved or solved in a project")
2017-08-17 22:00:37 +05:30
%p
2018-03-17 18:26:18 +05:30
= _("Issues can be bugs, tasks or ideas to be discussed. Also, issues are searchable and filterable.")
- if has_button
.text-center
- if project_select_button
= render 'shared/new_project_item_select', path: 'issues/new', label: 'New issue', type: :issues
- else
= link_to 'New issue', button_path, class: 'btn btn-success', title: 'New issue', id: 'new_issue_link'
2017-08-17 22:00:37 +05:30
- else
2018-03-17 18:26:18 +05:30
%h4.text-center= _("There are no issues to show")
%p
= _("The Issue Tracker is the place to add things that need to be improved or solved in a project. You can register or sign in to create issues for this project.")
2017-08-17 22:00:37 +05:30
.text-center
2018-03-17 18:26:18 +05:30
= link_to _('Register / Sign In'), new_user_session_path, class: 'btn btn-success'