2016-05-18 09:11:06 -04:00
|
|
|
.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-16 10:13:22 -05:00
|
|
|
= visibility_level_icon(@snippet.visibility_level, fw: false)
|
2016-05-18 09:11:06 -04:00
|
|
|
%strong.item-title
|
2015-12-16 10:13:22 -05:00
|
|
|
Snippet ##{@snippet.id}
|
|
|
|
%span.creator
|
2016-05-18 09:11:06 -04:00
|
|
|
created by #{link_to_member(@project, @snippet.author, size: 24, author_class: "author item-title")}
|
2015-12-16 10:13:22 -05:00
|
|
|
= 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')
|
2015-10-14 08:12:08 -04:00
|
|
|
|
2016-05-18 09:11:06 -04:00
|
|
|
.snippet-actions
|
2015-12-16 10:13:22 -05:00
|
|
|
- if @snippet.project_id?
|
|
|
|
= render "projects/snippets/actions"
|
|
|
|
- else
|
|
|
|
= render "snippets/actions"
|
2015-12-02 08:50:12 -05:00
|
|
|
|
2016-05-18 09:11:06 -04:00
|
|
|
.content-block.second-block
|
|
|
|
%h2.snippet-title.prepend-top-0.append-bottom-0
|
2015-12-16 10:13:22 -05:00
|
|
|
= markdown escape_once(@snippet.title), pipeline: :single_line
|