Sha256: 010b3731fa5476dffe0df2df0f98370ff9aad1ff2939ae3d91ffddbfbb235c9e
Contents?: true
Size: 852 Bytes
Versions: 15
Compression:
Stored size: 852 Bytes
Contents
<div class="card"> <div class="card-header"> <%= t('.visibility') %> </div> <div class="card-body"> <% repository_objects = @presenter.repository_objects.to_json %> <div id="dashboard-repository-objects" aria-hidden="true" style="height: 200px"> <script> //<![CDATA[ Hyrax.statistics.repositoryObjects = <%== repository_objects %> //]]> </script> </div> <table class="table table-striped sr-only text-left"> <thead> <tr> <th></th> <th></th> </tr> </thead> <tbody> <% JSON.parse(repository_objects).each do |row| %> <tr> <td><%= row["label"] %></td> <td><%= row["value"] %></td> </tr> <% end %> </tbody> </table> </div> </div>
Version data entries
15 entries across 15 versions & 1 rubygems