_commit.html.haml 1.26 KB
Newer Older
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
1 2 3 4 5
- if @note_counts
  - note_count = @note_counts.fetch(commit.id, 0)
- else
  - notes = commit.notes
  - note_count = notes.user.count
6

7
- cache_key = [project.path_with_namespace, commit.id, current_application_settings, note_count]
8
- cache_key.push(commit.status) if commit.status
9 10

= cache(cache_key) do
11
  %li.commit.js-toggle-container{ id: "commit-#{commit.short_id}" }
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
12
    .commit-row-title
Phil Hughes's avatar
Phil Hughes committed
13
      %span.item-title
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
14 15 16
        = link_to_gfm commit.title, namespace_project_commit_path(project.namespace, project, commit.id), class: "commit-row-message"
        - if commit.description?
          %a.text-expander.js-toggle-button ...
17

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
18
      .pull-right
19 20
        - if commit.status
          = render_ci_status(commit)
21 22
        = clipboard_button(clipboard_text: commit.id)
        = link_to commit.short_id, namespace_project_commit_path(project.namespace, project, commit), class: "commit_short_id"
23

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
24 25 26
    - if commit.description?
      .commit-row-description.js-toggle-content
        %pre
27
          = preserve(markdown(escape_once(commit.description), pipeline: :single_line))
28

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
29
    .commit-row-info
Phil Hughes's avatar
Phil Hughes committed
30
      by
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
31 32
      = commit_author_link(commit, avatar: true, size: 24)
      .committed_ago
33
        #{time_ago_with_tooltip(commit.committed_date)}  
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
34
      = link_to_browse_code(project, commit)