2018-03-29 08:06:49 -04:00
|
|
|
- breadcrumb_title _("Details")
|
2020-06-22 08:08:47 -04:00
|
|
|
- page_title _("Details")
|
2018-03-23 11:00:27 -04:00
|
|
|
|
2014-11-29 17:49:51 -05:00
|
|
|
%h2
|
|
|
|
%i.fa.fa-warning
|
2017-06-07 16:13:44 -04:00
|
|
|
#{ _('No repository') }
|
2014-11-29 17:49:51 -05:00
|
|
|
|
|
|
|
%p.slead
|
2017-06-07 16:13:44 -04:00
|
|
|
#{ _('The repository for this project does not exist.') }
|
2014-11-29 17:49:51 -05:00
|
|
|
%br
|
2017-06-07 16:13:44 -04:00
|
|
|
#{ _('This means you can not push code until you create an empty repository or import existing one.') }
|
2014-11-29 17:49:51 -05:00
|
|
|
%hr
|
|
|
|
|
|
|
|
.no-repo-actions
|
2017-06-29 13:06:35 -04:00
|
|
|
= link_to project_repository_path(@project), method: :post, class: 'btn btn-primary' do
|
2018-03-27 07:43:34 -04:00
|
|
|
#{ _('Create empty repository') }
|
2014-11-29 17:49:51 -05:00
|
|
|
|
2020-07-17 05:09:43 -04:00
|
|
|
%strong.gl-ml-3.gl-mr-3 or
|
2014-11-29 17:49:51 -05:00
|
|
|
|
2017-06-29 13:06:35 -04:00
|
|
|
= link_to new_project_import_path(@project), class: 'btn' do
|
2017-06-07 16:13:44 -04:00
|
|
|
#{ _('Import repository') }
|
2014-11-29 17:49:51 -05:00
|
|
|
|
|
|
|
- if can? current_user, :remove_project, @project
|
|
|
|
.prepend-top-20
|
2020-08-12 17:09:54 -04:00
|
|
|
= link_to _('Delete project'), project_path(@project), data: { confirm: remove_project_message(@project)}, method: :delete, class: "btn btn-inverted btn-remove float-right"
|