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

show.html.haml « snippets « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2720e4950117ae1b3688366e2759f5e6a69cc927 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
= render "projects/project_head"

%h3
  = @snippet.title
  %small= @snippet.file_name
  - if can?(current_user, :admin_snippet, @project) || @snippet.author == current_user
    = link_to "Edit", edit_project_snippet_path(@project, @snippet), :class => "btn small right"

%br
#tree-holder
  #tree-content-holder
    .view_file
      .view_file_header
        %i.icon-file
        %strong= @snippet.file_name
      .view_file_content
        %div{:class => current_user.dark_scheme ? "black" : ""}
          = raw @snippet.colorize(options: { linenos: 'True'})

= render "notes/notes", :tid => @snippet.id, :tt => "snippet"