summaryrefslogtreecommitdiff
path: root/app/views/users/calendar_activities.html.haml
blob: 6b1d75c6e7231d34b1635edf1e35999875f995f1 (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
%h4.prepend-top-20
  Contributions for
  %strong= @calendar_date.to_s(:medium)

- if @events.any?
  %ul.bordered-list
    - @events.sort_by(&:created_at).each do |event|
      %li
        %span.light
          %i.fa.fa-clock-o
          = event.created_at.strftime('%-I:%M%P')
        - if event.push?
          #{event.action_name} #{event.ref_type}
          %strong
            - commits_path = project_commits_path(event.project, event.ref_name)
            = link_to_if event.project.repository.branch_exists?(event.ref_name), event.ref_name, commits_path
        - else
          = event_action_name(event)
          %strong
            - if event.note?
              = link_to event.note_target.to_reference, event_note_target_path(event), class: 'has-tooltip', title: event.target_title
            - elsif event.target
              = link_to event.target.to_reference, [event.project.namespace.becomes(Namespace), event.project, event.target], class: 'has-tooltip', title: event.target_title

        at
        %strong
          - if event.project
            = link_to_project event.project
          - else
            = event.project_name
- else
  %p
    No contributions found for #{@calendar_date.to_s(:medium)}