70 lines
2.5 KiB
Plaintext
70 lines
2.5 KiB
Plaintext
<%= link_to admin_budget_budget_investments_path(Budget::Investment.filter_params(params)),
|
|
class: "back", data: {no_turbolink: true} do %>
|
|
<span class="icon-angle-left"></span><%= t("shared.back") %>
|
|
<% end %>
|
|
|
|
<%= render 'written_by_author' %>
|
|
|
|
<%= link_to t("admin.budget_investments.show.edit"),
|
|
edit_admin_budget_budget_investment_path(@budget, @investment,
|
|
Budget::Investment.filter_params(params)) unless @budget.finished? %>
|
|
|
|
<hr>
|
|
|
|
<h2 id="classification"><%= t("admin.budget_investments.show.classification") %></h2>
|
|
|
|
<p><strong><%= t("admin.budget_investments.show.assigned_admin") %>:</strong>
|
|
<%= @investment.administrator.try(:name_and_email) || t("admin.budget_investments.show.undefined") %>
|
|
</p>
|
|
|
|
<p id="tags">
|
|
<strong><%= t("admin.budget_investments.show.tags") %>:</strong>
|
|
|
|
<%= @investment.tags_on(:valuation).pluck(:name).sort.join(', ') %>
|
|
</p>
|
|
|
|
<p id="assigned_valuator_groups">
|
|
<strong><%= t("admin.budget_investments.show.valuator_groups") %>:</strong>
|
|
<% if @investment.valuator_groups.any? %>
|
|
<%= @investment.valuator_groups.collect(&:name).join(', ') %>
|
|
<% else %>
|
|
<%= t("admin.budget_investments.show.undefined") %>
|
|
<% end %>
|
|
</p>
|
|
|
|
<p id="assigned_valuators">
|
|
<strong><%= t("admin.budget_investments.show.assigned_valuators") %>:</strong>
|
|
<% if @investment.valuators.any? %>
|
|
<%= @investment.valuators.collect(&:name_and_email).join(', ') %>
|
|
<% else %>
|
|
<%= t("admin.budget_investments.show.undefined") %>
|
|
<% end %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= link_to t("admin.budget_investments.show.edit_classification"),
|
|
edit_admin_budget_budget_investment_path(@budget, @investment,
|
|
{anchor: 'classification'}.merge(Budget::Investment.filter_params(params))) unless @budget.finished? %>
|
|
</p>
|
|
|
|
<hr>
|
|
|
|
<h2><%= t("admin.budget_investments.show.dossier") %></h2>
|
|
<%= render 'valuation/budget_investments/dossier' %>
|
|
<p>
|
|
<%= link_to t("admin.budget_investments.show.edit_dossier"), edit_valuation_budget_budget_investment_path(@budget, @investment) unless @budget.finished? %>
|
|
</p>
|
|
|
|
<%= render 'valuation/budget_investments/valuation_comments' %>
|
|
|
|
<h2><%= t("admin.budget_investments.show.milestone") %></h2>
|
|
|
|
<%= render 'admin/budget_investments/milestones' %>
|
|
|
|
<p>
|
|
<%= link_to t("admin.budget_investments.show.new_milestone"),
|
|
polymorphic_path([:admin, *resource_hierarchy_for(@investment.milestones.new)],
|
|
action: :new),
|
|
class: "button hollow" %>
|
|
</p>
|