35 lines
1.7 KiB
Text
35 lines
1.7 KiB
Text
- layout_path = 'shared/empty_states/wikis_layout'
|
|
- messages = wiki_empty_state_messages(@wiki)
|
|
|
|
- if can?(current_user, :create_wiki, @wiki.container)
|
|
- create_path = wiki_page_path(@wiki, params[:id], view: 'create')
|
|
- create_link = link_to s_('WikiEmpty|Create your first page'), create_path, class: 'btn gl-button btn-confirm qa-create-first-page-link', title: s_('WikiEmpty|Create your first page')
|
|
|
|
= render layout: layout_path, locals: { image_path: 'illustrations/wiki_login_empty.svg' } do
|
|
%h4.text-left
|
|
= messages.dig(:writable, :title)
|
|
%p.text-left
|
|
= messages.dig(:writable, :body)
|
|
= create_link
|
|
- if show_enable_confluence_integration?(@wiki.container)
|
|
= link_to s_('WikiEmpty|Enable the Confluence Wiki integration'),
|
|
edit_project_service_path(@project, :confluence),
|
|
class: 'btn gl-button', title: s_('WikiEmpty|Enable the Confluence Wiki integration')
|
|
|
|
- elsif @project && can?(current_user, :read_issue, @project)
|
|
- issues_link = link_to s_('WikiEmptyIssueMessage|issue tracker'), project_issues_path(@project)
|
|
|
|
= render layout: layout_path, locals: { image_path: 'illustrations/wiki_logout_empty.svg' } do
|
|
%h4
|
|
= messages.dig(:issuable, :title)
|
|
%p.text-left
|
|
= messages.dig(:issuable, :body).html_safe % { issues_link: issues_link }
|
|
- if show_new_issue_link?(@project)
|
|
= link_to s_('WikiEmpty|Suggest wiki improvement'), new_project_issue_path(@project), class: 'btn gl-button btn-confirm', title: s_('WikiEmptyIssueMessage|Suggest wiki improvement')
|
|
|
|
- else
|
|
= render layout: layout_path, locals: { image_path: 'illustrations/wiki_logout_empty.svg' } do
|
|
%h4
|
|
= messages.dig(:readonly, :title)
|
|
%p
|
|
= messages.dig(:readonly, :body)
|