Sha256: 636026f05ae19ef15b22981e7d6beb52edebcbd82a61b29c0ed0b2152ff1190f
Contents?: true
Size: 895 Bytes
Versions: 30
Compression:
Stored size: 895 Bytes
Contents
<% page_title 'custom fields' %> <div> <h1 class='ns-page-title'><%= t(:custom_fields) %></h1> <%= link_to(new_admin_custom_field_path, class: 'btn btn-success new-action') do %> <i class="icon-plus"></i> <%= t(:add_new_custom_field) %> <% end %> <div class='clear'></div> </div> <br /> <table class="table table-striped"> <tbody> <% @custom_fields.each do |custom_field| %> <tr> <td><%= custom_field.name %></td> <td><%= custom_field.field_type %></td> <td> <%= link_to t(:edit), edit_admin_custom_field_path(custom_field), title: 'Edit' %> | <%= link_to [:admin, custom_field], confirm: t(:delete_confirmation_for_custom_field), method: 'delete', class: 'delete', title: 'Delete' do %> <%= delete_icon %> <% end %> </td> </td> </tr> <% end %> </tbody> </table>
Version data entries
30 entries across 30 versions & 1 rubygems