debian-mirror-gitlab/app/views/projects/snippets/index.html.haml

13 lines
495 B
Text
Raw Normal View History

2018-11-08 19:23:39 +05:30
- page_title _("Snippets")
2015-09-25 12:07:36 +05:30
2017-08-17 22:00:37 +05:30
- if current_user
.top-area
- include_private = @project.team.member?(current_user) || current_user.admin?
= render partial: 'snippets/snippets_scope_menu', locals: { subject: @project, include_private: include_private }
2018-03-17 18:26:18 +05:30
.nav-controls
2017-08-17 22:00:37 +05:30
- if can?(current_user, :create_project_snippet, @project)
2018-12-05 23:21:45 +05:30
= link_to _("New snippet"), new_project_snippet_path(@project), class: "btn btn-success", title: _("New snippet")
2014-09-02 18:07:02 +05:30
2015-11-26 14:37:03 +05:30
= render 'snippets/snippets'