Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_header.html.haml « snippets « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ae4211ddfdf93f9e51cca976e5d2d413654bae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.detail-page-header.clearfix
  .snippet-box.has-tooltip.inline.append-right-5{ title: snippet_visibility_level_description(@snippet.visibility_level, @snippet), data: { container: "body" } }
    %span.sr-only
      = visibility_level_label(@snippet.visibility_level)
    = visibility_level_icon(@snippet.visibility_level, fw: false)
  %strong.item-title
    Snippet #{@snippet.to_reference}
  %span.creator
    authored
    = time_ago_with_tooltip(@snippet.created_at, placement: 'bottom', html_class: 'snippet_updated_ago')
    - if @snippet.updated_at != @snippet.created_at
      %span
        = icon('edit', title: 'edited')
        = time_ago_with_tooltip(@snippet.updated_at, placement: 'bottom', html_class: 'snippet_edited_ago')
    by #{link_to_member(@project, @snippet.author, size: 24, author_class: "author item-title", avatar_class: "hidden-xs")}

  .snippet-actions
    - if @snippet.project_id?
      = render "projects/snippets/actions"
    - else
      = render "snippets/actions"

%h2.snippet-title.prepend-top-0.append-bottom-0
  = markdown escape_once(@snippet.title), pipeline: :single_line, author: @snippet.author