Sha256: 40aa2a09124b23db645b86593047a28260ab3f99f39d196fb41c07cb1310dcdb
Contents?: true
Size: 1.14 KB
Versions: 23
Compression:
Stored size: 1.14 KB
Contents
<% content_for :body do %> <div id="flash_message"> <% unless notice.blank? %> <script type='text/javascript'> jQuery("<p id='notice'><%= notice %></p>") .appendTo('#flash_message') .slideDown().delay(5000).slideUp(); </script> <% end %> </div> <div id="record"> <h2>Logger Name</h2> <%= link_to 'Back to Logger Names', logger_names_path %> | <%= link_to 'Edit', edit_logger_name_path(@logger_name) %> </br> </br> <table id="naf_table_show"> <thead> <tr> <th>Attribute</th> <th>Value</th> </tr> </thead> <tbody> <% @logger_name.attributes.each do |key, value| -%> <tr> <td><%= naf_make_header(key) %></td> <td><%= value %></td> </tr> <% end -%> </tbody> </table> </br> <%= link_to "Destroy", @logger_name, { confirm: "Are you sure you want to destroy this Logger Name?", method: :delete, class: 'destroy' } %> </div> <% end %> <%= render partial: 'naf/shared/application' %>
Version data entries
23 entries across 23 versions & 1 rubygems