Sha256: d4545c58b33d333da9d246db403095dc5bd3b72b75a7642f784424ad2e41dc5d

Contents?: true

Size: 631 Bytes

Versions: 1

Compression:

Stored size: 631 Bytes

Contents

<% Broker.tables.each do |table, vals| %>
<div class="row header">
  <div class="col-sm-12">
    <h3><span class="title"><%= vals['name'] %></span></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>Broker Path</th>					
				</tr>
		</thead>
		<tbody>
			<% vals['tables'].each do |key, val| %>
			<tr>
				<td><%= key %></td>
				<td><%= val %></td>
				<td><%= "#{Broker.options[:queue]}/#{table}/#{key}" %></td>
			</tr>
			<% end %>
		</tbody>
	</table>
  </div>
</div>
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
broker-0.1.2 web/views/api.erb