Skip to content

Commit

Permalink
update pageheader in activity page
Browse files Browse the repository at this point in the history
  • Loading branch information
bsatarnejad committed Sep 20, 2024
1 parent 9612966 commit 564482a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions app/views/activities/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,16 @@ See COPYRIGHT and LICENSE files for more details.

<%= call_hook :activity_index_head %>

<%= toolbar title: (@author.nil? ? t(:label_activity) : t(:label_user_activity, value: link_to_user(@author))).html_safe,
subtitle: t(:label_date_from_to, start: format_date(@date_to - @days), end: format_date(@date_to-1))
<%=
render Primer::OpenProject::PageHeader.new do |header|
header.with_title { (@author.nil? ? t(:label_activity) : t(:label_user_activity, value: link_to_user(@author))) }
header.with_breadcrumbs([t(:label_activity)])
end
%>
<%=
render(Primer::OpenProject::SubHeader.new) do |subheader|
subheader.with_text {t(:label_date_from_to, start: format_date(@date_to - @days), end: format_date(@date_to-1))}
end
%>

<%= render(Activities::DaysComponent.new(events: @events, current_project: @project, activity_page: @activity_page)) %>
Expand Down

0 comments on commit 564482a

Please sign in to comment.