BigW Consortium Gitlab

_header.html.haml 1.07 KB
.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.gray-content-block.second-block
  %h2.title
    = markdown escape_once(@snippet.title), pipeline: :single_line