17 lines
546 B
Plaintext
17 lines
546 B
Plaintext
<div class="border-b border-gray-200">
|
|
<nav class="-mb-px flex" aria-label="Tabs">
|
|
<%= render TabnavLinkComponent.new(
|
|
name: "Donations",
|
|
path: contributions_donations_path,
|
|
active: current_page?(contributions_donations_path)
|
|
) %>
|
|
<%= render TabnavLinkComponent.new(
|
|
name: render(EditableContentComponent.new(
|
|
context: "contributions/other", key: "title", default: "Other"
|
|
)),
|
|
path: contributions_other_path,
|
|
active: current_page?(contributions_other_path)
|
|
) %>
|
|
</nav>
|
|
</div>
|