Sha256: 912a73761b86dcbbaad812017cbd9a9e1a7912da569b3d74791808d07f950652
Contents?: true
Size: 1.16 KB
Versions: 5
Compression:
Stored size: 1.16 KB
Contents
<%== view_title('Cluster Informations') %> <%== partial 'cluster/tabs' %> <div class="container mb-5"> <div class="row"> <div class="col-lg-12"> <% if @partitions.empty? && params.current_page <= 1 %> <%== partial 'cluster/no_partitions' %> <% elsif @partitions.empty? %> <%== partial 'shared/no_paginated_data' %> <% else %> <div class="table-responsive"> <table class="processes bg-white table table-hover table-bordered table-striped"> <thead> <tr class="align-middle"> <th><%== sort_link(:topic_name) %></th> <th><%== sort_link(:partition_id) %></th> <th><%== sort_link(:leader) %></th> <th><%== sort_link(:replica_count) %></th> <th><%== sort_link('In sync brokers', :in_sync_replica_brokers) %></th> </tr> </thead> <tbody> <%== each_partial( @partitions, 'cluster/partition' ) %> </tbody> </table> </div> <% end %> </div> </div> </div>
Version data entries
5 entries across 5 versions & 1 rubygems