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/custom_actions/index.html.erb

16 lines
621 B

<% html_title l(:label_administration), t('custom_actions.plural') -%>
<%= toolbar title: t('custom_actions.plural') do %>
<li class="toolbar-item">
<%= link_to new_custom_action_path,
{ class: 'button -alt-highlight',
aria: { label: t('custom_actions.new') },
title: t('custom_actions.new') } do %>
<%= op_icon('button--icon icon-add') %>
<span class="button--text"><%= CustomAction.model_name.human %></span>
<% end %>
</li>
<% end %>
<section class="admin--edit-section">
<%= cell ::CustomActions::TableCell, @custom_actions %>
</section>