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

69 lines
3.5 KiB
Text
Raw Normal View History

2019-12-21 20:55:43 +05:30
- button_path = local_assigns.fetch(:new_project_issue_button_path, false)
2017-08-17 22:00:37 +05:30
- project_select_button = local_assigns.fetch(:project_select_button, false)
2019-02-15 15:39:39 +05:30
- show_import_button = local_assigns.fetch(:show_import_button, false) && can?(current_user, :import_issues, @project)
2017-08-17 22:00:37 +05:30
- has_button = button_path || project_select_button
2019-03-02 22:35:43 +05:30
- closed_issues_count = issuables_count_for_state(:issues, :closed)
- opened_issues_count = issuables_count_for_state(:issues, :opened)
- is_opened_state = params[:state] == 'opened'
- is_closed_state = params[:state] == 'closed'
2017-08-17 22:00:37 +05:30
.row.empty-state
2018-11-08 19:23:39 +05:30
.col-12
2017-08-17 22:00:37 +05:30
.svg-content
2018-03-17 18:26:18 +05:30
= image_tag 'illustrations/issues.svg'
2018-11-08 19:23:39 +05:30
.col-12
2017-08-17 22:00:37 +05:30
.text-content
2019-02-15 15:39:39 +05:30
- if has_filter_bar_param?
%h4.text-center
= _("Sorry, your filter produced no results")
%p.text-center
= _("To widen your search, change or remove filters above")
2019-03-02 22:35:43 +05:30
- if show_new_issue_link?(@project)
.text-center
2020-10-24 23:57:45 +05:30
= link_to _("New issue"), new_project_issue_path(@project), class: "btn btn-success"
2019-03-02 22:35:43 +05:30
- elsif is_opened_state && opened_issues_count == 0 && closed_issues_count > 0
%h4.text-center
= _("There are no open issues")
%p.text-center
= _("To keep this project going, create a new issue")
- if show_new_issue_link?(@project)
.text-center
2020-10-24 23:57:45 +05:30
= link_to _("New issue"), new_project_issue_path(@project), class: "btn btn-success"
2019-03-02 22:35:43 +05:30
- elsif is_closed_state && opened_issues_count > 0 && closed_issues_count == 0
%h4.text-center
= _("There are no closed issues")
2019-02-15 15:39:39 +05:30
- elsif 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
2019-02-15 15:39:39 +05:30
= render 'shared/new_project_item_select', path: 'issues/new', label: _('New issue'), type: :issues, with_feature_enabled: 'issues'
2018-03-17 18:26:18 +05:30
- else
2020-04-22 19:07:51 +05:30
= link_to _('New issue'), button_path, class: 'btn btn-success', id: 'new_issue_link'
2019-02-15 15:39:39 +05:30
- if show_import_button
= render 'projects/issues/import_csv/button', type: :text
2020-10-24 23:57:45 +05:30
%hr
%p.gl-text-center.gl-mb-0
%strong
= s_('JiraService|Using Jira for issue tracking?')
%p.gl-text-center.gl-mb-0
2020-11-24 15:15:51 +05:30
- jira_docs_link_url = help_page_url('user/project/integrations/jira', anchor: 'view-jira-issues')
2020-10-24 23:57:45 +05:30
- jira_docs_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: jira_docs_link_url }
= html_escape(s_('JiraService|%{jira_docs_link_start}Enable the Jira integration%{jira_docs_link_end} to view your Jira issues in GitLab.')) % { jira_docs_link_start: jira_docs_link_start.html_safe, jira_docs_link_end: '</a>'.html_safe }
%p.gl-text-center.gl-mb-0.gl-text-gray-500
= s_('JiraService|This feature requires a Premium plan.')
2019-02-15 15:39:39 +05:30
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'
2019-02-15 15:39:39 +05:30
- if show_import_button
= render 'projects/issues/import_csv/modal'