Sha256: b8d06a6950c6e2fc346be8ef4c2de3e076fa3ef22552844545e386db8244eedf
Contents?: true
Size: 702 Bytes
Versions: 6
Compression:
Stored size: 702 Bytes
Contents
<h1>Listing posts</h1> <table> <tr> <th>Title</th> <th>Body</th> <th></th> <th></th> <th></th> </tr> <% if @posts.present? %> <% @posts.each do |post| %> <tr> <td><%= post.title %></td> <td><%= post.body %></td> <td><%= link_to 'Show', post %></td> <td><%= link_to 'Edit', edit_post_path(post) %></td> <td><%= link_to 'Destroy', post, :data => {:confirm => 'Are you sure?'}, :method => :delete %></td> </tr> <% end %> <% end -%> </table> <br /> <%= link_to 'New Post', new_post_path %> <% if gxapi_variant_name == 'fake_var' -%> <h3>Fake Var Version</h3> <% end -%> <%= gxapi_experiment_js %> <%= gxapi_experiment_js(:test) %>
Version data entries
6 entries across 6 versions & 1 rubygems