gitlab-org--gitlab-foss/app/views/shared/snippets/_snippet.html.haml

21 lines
696 B
Text
Raw Normal View History

%li.snippet-row
.snippet-title
2013-06-05 15:25:27 -04:00
= link_to reliable_snippet_path(snippet) do
= truncate(snippet.title, length: 60)
- if snippet.private?
%span.label.label-gray
2014-10-01 18:21:29 -04:00
%i.fa.fa-lock
private
%span.monospace.pull-right
2013-06-05 15:25:27 -04:00
= snippet.file_name
%small.pull-right.cgray
- if snippet.project_id?
= link_to snippet.project.name_with_namespace, namespace_project_path(snippet.project.namespace, snippet.project)
2013-06-05 15:25:27 -04:00
.snippet-info
= link_to user_snippets_path(snippet.author) do
= image_tag avatar_icon(snippet.author_email), class: "avatar s24", alt: ''
= snippet.author_name
authored #{time_ago_with_tooltip(snippet.created_at)}