Introduces components for tabbed navigation and adds a tab menu and item for non-financial contributions to the donations/contributions page.
9 lines
301 B
Plaintext
9 lines
301 B
Plaintext
<%= render TabnavLinkComponent.new(
|
|
name: "Donations", path: contributions_donations_path,
|
|
active: current_page?(contributions_donations_path)
|
|
) %>
|
|
<%= render TabnavLinkComponent.new(
|
|
name: "Projects", path: contributions_projects_path,
|
|
active: current_page?(contributions_projects_path)
|
|
) %>
|