debian-mirror-gitlab/app/views/shared/snippets/_snippet.html.haml

38 lines
1.4 KiB
Text
Raw Normal View History

2017-08-17 22:00:37 +05:30
- link_project = local_assigns.fetch(:link_project, false)
2019-12-04 20:38:33 +05:30
- notes_count = @noteable_meta_data[snippet.id].user_notes_count
2017-08-17 22:00:37 +05:30
2015-09-25 12:07:36 +05:30
%li.snippet-row
2018-11-08 19:23:39 +05:30
= image_tag avatar_icon_for_user(snippet.author), class: "avatar s40 d-none d-sm-block", alt: ''
2016-06-02 11:05:42 +05:30
.title
2014-09-02 18:07:02 +05:30
= link_to reliable_snippet_path(snippet) do
2016-09-29 09:46:39 +05:30
= snippet.title
2017-08-17 22:00:37 +05:30
- if snippet.file_name
2018-11-08 19:23:39 +05:30
%span.snippet-filename.monospace.d-none.d-sm-inline-block
2017-08-17 22:00:37 +05:30
= snippet.file_name
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
%ul.controls
2016-09-29 09:46:39 +05:30
%li
2019-12-04 20:38:33 +05:30
= link_to reliable_snippet_path(snippet, anchor: 'notes'), class: ('no-comments' if notes_count.zero?) do
2016-09-29 09:46:39 +05:30
= icon('comments')
2019-12-04 20:38:33 +05:30
= notes_count
2016-09-29 09:46:39 +05:30
%li
%span.sr-only
= visibility_level_label(snippet.visibility_level)
= visibility_level_icon(snippet.visibility_level, fw: false)
2017-08-17 22:00:37 +05:30
.snippet-info
#{snippet.to_reference} ·
authored #{time_ago_with_tooltip(snippet.created_at, placement: 'bottom', html_class: 'snippet-created-ago')}
by
2019-02-15 15:39:39 +05:30
= link_to user_snippets_path(snippet.author), class: "js-user-link", data: { user_id: snippet.author.id } do
2015-09-25 12:07:36 +05:30
= snippet.author_name
2017-08-17 22:00:37 +05:30
- if link_project && snippet.project_id?
2018-11-08 19:23:39 +05:30
%span.d-none.d-sm-inline-block
2017-08-17 22:00:37 +05:30
in
2017-09-10 17:25:29 +05:30
= link_to project_path(snippet.project) do
2018-03-27 19:54:05 +05:30
= snippet.project.full_name
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
.float-right.snippet-updated-at
2017-08-17 22:00:37 +05:30
%span updated #{time_ago_with_tooltip(snippet.updated_at, placement: 'bottom')}