Project

General

Profile

Download (1.29 KB) Statistics
| Branch: | Tag: | Revision:
<% title _("Global Parameters") %>

<% title_actions display_link_if_authorized(_("New Parameter"), hash_for_new_common_parameter_path),
documentation_button('4.2.3Parameters') %>

<table class="table table-bordered table-striped table-two-pane table-fixed">
<thead>
<tr>
<th class="col-md-3"><%= sort :name, :as => s_("Parameter|Name") %></th>
<th class="col-md-8"><%= sort :value, :as => s_("Parameter|Value")%></th>
<th class="col-md-1"></th>
</tr>
</thead>
<tbody>
<% for common_parameter in @common_parameters %>
<tr>
<td class="display-two-pane ellipsis"><%= link_to_if_authorized common_parameter, hash_for_edit_common_parameter_path(:id => common_parameter).merge(:auth_object => common_parameter, :authorizer => authorizer, :permission => 'edit_globals') %></td>
<td class="ellipsis"><%= common_parameter.safe_value %></td>
<td class="ca">
<%= display_delete_if_authorized hash_for_common_parameter_path(:id => common_parameter).merge(:auth_object => common_parameter, :authorizer => authorizer, :permission => 'destroy_globals'),
:data => { :confirm => _("Delete %s?") % common_parameter.name } %>
</td>
</tr>
<% end %>
</tbody>
</table>
<%= will_paginate_with_info @common_parameters %>
(10-10/11)