ubicloud/views/admin/objects.erb
Jeremy Evans 63c9303a0f Allow browsing objects by model class in the admin site
This currently orders and paginates by ubid. Up to 100 objects
are shown, and then a More link is shown for the next 100 objects
if there are additional objects.
2025-09-04 02:37:23 +09:00

11 lines
276 B
Text

<% @page_title = @klass.name %>
<ul id="object-list">
<% @objects.each do |object| %>
<li><a href="/model/<%= @klass %>/<%= object.ubid %>"><%= object.admin_label %></a></li>
<% end %>
</ul>
<% if @after %>
<p><a href="?after=<%= @after %>">More</a></p>
<% end %>