Note that, in order to be consistent with the name of the component, we're renaming the `budget-execution` class to `budget-executions-investment`.
16 lines
533 B
Plaintext
16 lines
533 B
Plaintext
<div class="budget-executions-investment">
|
|
<%= render Budgets::Executions::ImageComponent.new(investment) %>
|
|
<div class="budget-execution-info">
|
|
<div class="budget-execution-content">
|
|
<h5>
|
|
<%= link_to investment.title,
|
|
polymorphic_path(investment, anchor: "tab-milestones") %>
|
|
</h5>
|
|
<span class="author"><%= investment.author.name %></span>
|
|
</div>
|
|
<p class="price margin-top text-center">
|
|
<strong><%= investment.formatted_price %></strong>
|
|
</p>
|
|
</div>
|
|
</div>
|