Sha256: d87c81d3dd2773f9f93989adb22d6855295c77b0f3fe8b07ab12fc9185fcf868

Contents?: true

Size: 1.04 KB

Versions: 3

Compression:

Stored size: 1.04 KB

Contents

<%%- model_class = @<%= resource_name %>.class -%>
<div class="page-header">
  <h1><%%=t '.title', :default => model_class.model_name.human %></h1>
</div>

<dl class="dl-horizontal">
<%- columns.each do |column| -%>
  <dt><strong><%%= model_class.human_attribute_name(:<%= column.name %>) %>:</strong></dt>
  <dd><%%= @<%= resource_name %>.<%= column.name %> %></dd>
<%- end -%>
</dl>

<div class="form-actions">
  <%%= link_to t('.back', :default => t("helpers.links.back")),
              <%= controller_routing_path %>_path, :class => 'btn'  %>
  <%%= link_to t('.edit', :default => t("helpers.links.edit")),
              edit_<%= singular_controller_routing_path %>_path(@<%= resource_name %>), :class => 'btn' %>
  <%%= link_to t('.destroy', :default => t("helpers.links.destroy")),
              <%= singular_controller_routing_path %>_path(@<%= resource_name %>),
              :method => 'delete',
              :confirm => t('.confirm', :default => t("helpers.links.confirm", :default => 'Are you sure?')),
              :class => 'btn btn-danger' %>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
twitter-bootstrap-rails-2.1.0 lib/generators/bootstrap/themed/templates/show.html.erb
twitter-bootstrap-rails-2.0.9 lib/generators/bootstrap/themed/templates/show.html.erb
twitter-bootstrap-rails-2.0.8 lib/generators/bootstrap/themed/templates/show.html.erb