summaryrefslogtreecommitdiff
path: root/app/views/shared/snippets/_header.html.haml
blob: e65b181487238d529f5b8e5196d0cbfdd83c16a1 (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
25
.detail-page-header
  .snippet-box.has-tooltip{class: visibility_level_color(@snippet.visibility_level), title: snippet_visibility_level_description(@snippet.visibility_level, @snippet), data: { container: 'body' }}
    = visibility_level_icon(@snippet.visibility_level, fw: false)
    = visibility_level_label(@snippet.visibility_level)
  %span.identifier
    Snippet ##{@snippet.id}
  %span.creator
    · created by #{link_to_member(@project, @snippet.author, size: 24)}
    ·
    = 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')

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

.detail-page-description.row-content-block.second-block
  %h2.title
    = markdown escape_once(@snippet.title), pipeline: :single_line