Sha256: bcf531e06677b94d0e3f9db3356b67ca414fa5ef5919c1cb6bf7979ee7e3cb5f
Contents?: true
Size: 908 Bytes
Versions: 4
Compression:
Stored size: 908 Bytes
Contents
<h1>Submit another query that you want to submit to vertica for this stack</h1> <%= form_tag({ :controller => '/vertica_history/vertica_history', :action => 'query_results' }, method: 'post', html: { class: 'form-inline attributes-select-form' }) do %> <%= label_tag(:q, "Search for:") %> <%= text_area_tag(:q, @q, {rows:'10', class: 'form-control'}) %> <br> <div class="btn-group"> <%= submit_tag("Search", {class: 'btn btn-primary'}) %> <%= link_to "Cancel", "/rails_admin/", { class: 'btn btn-default' } %> </div> <% end %> <br> <table class="table table-striped table-bordered table-condensed text-center"> <tr> <% @columns.each do |title| %> <th class="text-center"><%= title %></th> <% end %> </tr> <% @rows.each do |row| %> <tr> <% @columns.each do |column| %> <td><%= row[column.to_sym] %></td> <% end %> </tr> <% end %> </table>
Version data entries
4 entries across 4 versions & 1 rubygems