1f92c22fec
Split out header into shared partial Used action partials to have unique actions for shared and personal snippets changed back to created date in list view Switched to using existing color classes
20 lines
696 B
Text
20 lines
696 B
Text
%li.snippet-row
|
|
.snippet-title
|
|
= link_to reliable_snippet_path(snippet) do
|
|
= truncate(snippet.title, length: 60)
|
|
- if snippet.private?
|
|
%span.label.label-gray
|
|
%i.fa.fa-lock
|
|
private
|
|
%span.monospace.pull-right
|
|
= 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)
|
|
|
|
.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)}
|