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

calendar_activities.html.haml « users « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c0cecfadb593bca26bddcea6223d7ba9a3b1875 (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
25
26
27
28
29
30
31
32
33
.calendar_commit_activity
  %hr
  %h4
    Commit Activity
  %strong
    - if @commit_count == 0
      no
    - else
      = @commit_count
  %span.calendar_commit_date
    unique
    = 'commit'.pluralize(@commit_count)
    on
    = @calendar_date.strftime("%b %d, %Y") rescue ''
  -unless @commit_count == 0
    %hr
  - @calendar_activities.each do |project, commits|
    - next if commits.empty?
    %div.js-toggle-container
      %strong
        = pluralize(commits.count, 'commit')
        in project
        = link_to project.name_with_namespace, project_path(project)
        %a.text-expander.js-toggle-button …
        %hr
      %div.js-toggle-content
        - commits.each do |commit|
          %span.monospace
            = commit.committed_date.strftime("%H:%M")
            = link_to commit.short_id, namespace_project_commit_path(project.namespace, project, commit), class: "commit_short_id"
          = link_to commit.message, namespace_project_commit_path(project.namespace, project, commit), class: "commit-row-message str-truncated"
          %br
        %hr