Remove all the translations that are left over after having unified them in the component.
31 lines
1001 B
Plaintext
31 lines
1001 B
Plaintext
<p class="investment-project-info">
|
|
<%= l investment.created_at.to_date %>
|
|
<span class="bullet"> • </span>
|
|
|
|
<%= render Shared::CommentsCountComponent.new(
|
|
investment.comments_count,
|
|
url: budget_investment_path(investment.budget, investment, anchor: "comments")
|
|
) %>
|
|
|
|
<% if investment.author.hidden? || investment.author.erased? %>
|
|
<span class="bullet"> • </span>
|
|
<span class="author">
|
|
<%= t("budgets.investments.show.author_deleted") %>
|
|
</span>
|
|
<% else %>
|
|
<span class="bullet"> • </span>
|
|
<span class="author">
|
|
<%= investment.author.name %>
|
|
</span>
|
|
<% if investment.author.official? %>
|
|
<span class="bullet"> • </span>
|
|
<span class="label round level-<%= investment.author.official_level %>">
|
|
<%= investment.author.official_position %>
|
|
</span>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<span class="bullet"> • </span>
|
|
<%= investment.heading.name %>
|
|
</p>
|