此代码显示了属于当前社区的 CommunityTopic 的所有记录。如何将数字限制为 10 条记录以在此处显示?
<ul>
<% @community.community_topics.each do |topic| %>
<li>
<%= link_to topic.title, community_topic_path(@community, topic) %>
<%= link_to topic.user.user_profile.nickname, community_topic_path(@community, topic) %>
</li>
<% end %>
</ul>