Sha256: 049f49dc2ec77be002fa8f2b532bcef1005c8ebcc26ad4578e74a86cb78a6536
Contents?: true
Size: 753 Bytes
Versions: 8
Compression:
Stored size: 753 Bytes
Contents
<% if can? :view, Kaui::AdminTenant %> <% unless @tenants.empty? %> <table id="tenants-table" class="table table-condensed"> <thead> <tr> <th>Name</th> <th>Tenant Id</th> <th>Api Key</th> </tr> </thead> <tbody> <% @tenants.each do |t| %> <tr> <td><%= link_to t.name, admin_tenant_path(t.id) %></td> <td><%= t.kb_tenant_id %></td> <td><%= t.api_key %></td> </tr> <% end %> </tbody> </table> <% end %> <% end %> <% if can? :create, Kaui::AdminTenant %> <h3><%= link_to 'Configure a New Tenant', new_admin_tenant_path %></h3> <% end %>
Version data entries
8 entries across 8 versions & 1 rubygems