debian-mirror-gitlab/app/views/shared/snippets/_header.html.haml

25 lines
1.1 KiB
Text
Raw Normal View History

.detail-page-header.clearfix
.snippet-box.has-tooltip.inline.append-right-5{ title: snippet_visibility_level_description(@snippet.visibility_level, @snippet), data: { container: "body" } }
%span.sr-only
= visibility_level_label(@snippet.visibility_level)
2015-12-23 02:04:40 +05:30
= visibility_level_icon(@snippet.visibility_level, fw: false)
%strong.item-title
Snippet #{@snippet.to_reference}
2015-12-23 02:04:40 +05:30
%span.creator
2016-09-29 09:46:39 +05:30
authored
2015-12-23 02:04:40 +05:30
= time_ago_with_tooltip(@snippet.created_at, placement: 'bottom', html_class: 'snippet_updated_ago')
- if @snippet.updated_at != @snippet.created_at
%span
= icon('edit', title: 'edited')
= time_ago_with_tooltip(@snippet.updated_at, placement: 'bottom', html_class: 'snippet_edited_ago')
2016-09-29 09:46:39 +05:30
by #{link_to_member(@project, @snippet.author, size: 24, author_class: "author item-title", avatar_class: "hidden-xs")}
2015-11-26 14:37:03 +05:30
.snippet-actions
2015-12-23 02:04:40 +05:30
- if @snippet.project_id?
= render "projects/snippets/actions"
- else
= render "snippets/actions"
2016-09-29 09:46:39 +05:30
%h2.snippet-title.prepend-top-0.append-bottom-0
2016-11-03 12:29:30 +05:30
= markdown_field(@snippet, :title)