35 lines
1.4 KiB
Text
35 lines
1.4 KiB
Text
%h4.prepend-top-20
|
|
= html_escape(_("Contributions for %{calendar_date}")) % { calendar_date: tag.strong(@calendar_date.to_s(:medium)) }
|
|
|
|
- if @events.any?
|
|
%ul.bordered-list
|
|
- @events.sort_by(&:created_at).each do |event|
|
|
%li
|
|
%span.light
|
|
= sprite_icon('clock', css_class: 'gl-vertical-align-text-bottom')
|
|
= event.created_at.to_time.in_time_zone.strftime('%-I:%M%P')
|
|
- if event.visible_to_user?(current_user)
|
|
- if event.push_action?
|
|
#{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_url(event), class: 'has-tooltip', title: event.target_title
|
|
- elsif event.target
|
|
= link_to event.target.to_reference, [event.project, event.target], class: 'has-tooltip', title: event.target_title
|
|
|
|
= s_('UserProfile|at')
|
|
%strong
|
|
- if event.project
|
|
= link_to_project(event.project)
|
|
- else
|
|
= event.resource_parent_name
|
|
- else
|
|
= s_('UserProfile|made a private contribution')
|
|
- else
|
|
%p
|
|
= _('No contributions were found')
|