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

_snippet_title.html.haml « results « search « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e01088d9e69369ea5b0e740529c77dfd8504de8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.search-result-row
  %h4.snippet-title.term
    = link_to reliable_snippet_path(snippet_title) do
      = truncate(snippet_title.title, length: 60)
      - if snippet_title.private?
        %span.badge.badge-gray
          %i.fa.fa-lock
          = _("private")
    %span.cgray.monospace.tiny.float-right.term
      = snippet_title.file_name

  %small.float-right.cgray
    - if snippet_title.project_id?
      = link_to snippet_title.project.full_name, project_path(snippet_title.project)

  .snippet-info
    = snippet_title.to_reference
    %span
      by
      = link_to user_snippets_path(snippet_title.author) do
        = image_tag avatar_icon_for_user(snippet_title.author), class: "avatar avatar-inline s16", alt: ''
        = snippet_title.author_name
      %span.light= time_ago_with_tooltip(snippet_title.created_at)