gitlab-org--gitlab-foss/app/views/snippets/current_user_index.html.haml

25 lines
710 B
Plaintext
Raw Normal View History

2013-06-05 19:25:27 +00:00
%h3.page_title
My Snippets
%small share code pastes with others out of git repository
2013-06-18 14:43:49 +00:00
.pull-right
= link_to new_snippet_path, class: "btn btn-small add_new grouped btn-primary", title: "New Snippet" do
Add new snippet
= link_to snippets_path, class: "btn btn-small grouped" do
Discover snippets
2013-06-05 19:25:27 +00:00
%hr
.row
.span3
%ul.nav.nav-pills.nav-stacked
= nav_tab :scope, nil do
= link_to "All", user_snippets_path(@user)
= nav_tab :scope, 'private' do
= link_to "Private", user_snippets_path(@user, scope: 'private')
= nav_tab :scope, 'public' do
= link_to "Public", user_snippets_path(@user, scope: 'public')
.span9
= render 'snippets'