summaryrefslogtreecommitdiff
path: root/app/views/shared/snippets/_header.html.haml
blob: 0a4a790ec5ee182b5ad0e5a62178dd0636246e45 (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
.snippet-details
  .page-title
    .snippet-box{class: visibility_level_color(@snippet.visibility_level)}
      = visibility_level_icon(@snippet.visibility_level)
      = visibility_level_label(@snippet.visibility_level)
    %span.snippet-id 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"
  .gray-content-block.middle-block
    %h2.snippet-title
      = gfm escape_once(@snippet.title)