mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-10-04 13:52:06 +08:00
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.
11 lines
276 B
Text
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 %>
|