37 lines
1.3 KiB
Text
37 lines
1.3 KiB
Text
- link_project = local_assigns.fetch(:link_project, false)
|
|
|
|
%li.snippet-row
|
|
= image_tag avatar_icon(snippet.author_email), class: "avatar s40 hidden-xs", alt: ''
|
|
|
|
.title
|
|
= link_to reliable_snippet_path(snippet) do
|
|
= snippet.title
|
|
- if snippet.file_name
|
|
%span.snippet-filename.monospace.hidden-xs
|
|
= snippet.file_name
|
|
|
|
%ul.controls
|
|
%li
|
|
- note_count = snippet.notes.user.count
|
|
= link_to reliable_snippet_path(snippet, anchor: 'notes'), class: ('no-comments' if note_count.zero?) do
|
|
= icon('comments')
|
|
= note_count
|
|
%li
|
|
%span.sr-only
|
|
= visibility_level_label(snippet.visibility_level)
|
|
= visibility_level_icon(snippet.visibility_level, fw: false)
|
|
|
|
.snippet-info
|
|
#{snippet.to_reference} ·
|
|
authored #{time_ago_with_tooltip(snippet.created_at, placement: 'bottom', html_class: 'snippet-created-ago')}
|
|
by
|
|
= link_to user_snippets_path(snippet.author) do
|
|
= snippet.author_name
|
|
- if link_project && snippet.project_id?
|
|
%span.hidden-xs
|
|
in
|
|
= link_to project_path(snippet.project) do
|
|
= snippet.project.name_with_namespace
|
|
|
|
.pull-right.snippet-updated-at
|
|
%span updated #{time_ago_with_tooltip(snippet.updated_at, placement: 'bottom')}
|