Sha256: b106f35f8be50c1e1a93b9d7effb68d67bf9dc35b9ddd64a39ab7b6fb76e3a82
Contents?: true
Size: 686 Bytes
Versions: 2
Compression:
Stored size: 686 Bytes
Contents
<% Broker.tables.each do |table, vals| %> <div class="row header"> <div class="col-sm-12"> <h3><span class="title"><%= vals['name'] %></span> URL: <%= "/import/#{table}/[table_name]" %></h3> <h4>Token: <%= vals['token'] %></h4> <table class="workers table table-hover table-bordered table-striped table-white"> <thead> <tr> <th>Table Name</th> <th>ID #</th> <th>View Fields</th> </tr> </thead> <tbody> <% vals['tables'].each do |key, val| %> <tr> <td><%= key %></td> <td><%= val %></td> <td><a href="/exports?app=<%= table %>&table=<%= key %>">View</a></td> </tr> <% end %> </tbody> </table> </div> </div> <% end %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
broker-0.1.1 | web/views/api.erb |
broker-0.0.9 | web/views/api.erb |