OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/app/views/reportings/_toolbar.html.erb

19 lines
762 B

<%= toolbar title: l("timelines.reporting_for_project.show",
:title => link_to_project(@reporting.reporting_to_project)) do %>
<% if show_actions %>
<% if authorize_for :reportings, :edit %>
<li class="toolbar-item">
<%= link_to edit_project_reporting_path(@project, @reporting), class: 'button' do %>
<i class="button--icon icon-edit"></i> <%= l(:button_edit) %>
<% end %>
</li>
<% end %>
<% if authorize_for :reportings, :destroy %>
<%= link_to confirm_destroy_project_reporting_path(@project, @reporting), class: 'button' do %>
<i class="button--icon icon-delete"></i> <%= l(:button_delete) %>
<% end %>
<% end %>
<% end %>
<% end %>