mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-15 15:46:08 +10:00
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
21 lines
696 B
Plaintext
21 lines
696 B
Plaintext
%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)}
|