在活动管理中对选定对象使用收集操作

发布于 2024-12-13 17:46:50 字数 673 浏览 0 评论 0原文

我正在为我的 Rails 应用程序实现一个带有 Active Admin 的管理面板。

我在管理面板中有一个评论部分,我想通过检查我想要批准的评论然后单击更新按钮来批准一组评论。

在我以前版本的管理面板中,进行组更新的页面部分如下所示:

<%= form_tag(:controller => "admin/comments", :action => "update_statuses") do %>
   <table>
   <% @comments.each do |comment| %>
      <tr>
          <td><%= check_box_tag("comments[]", comment.id) %></td>
          #More table cells with info about comment
          </tr>
   <%end%>
</table>
<%= select_tag "status", options_for_select(comment_statuses) %>
<%= submit_tag "Update" %>
<% end %>

如何在活动管理中获得类似的功能?

I am implementing an admin panel with Active Admin for my rails application.

I have a comment section inside admin panel, and I'd like to approve a group of comments by checking the comments I'd like to approve and then clicking update button.

In my previous version of admin panel part of page that did group updating looks like this:

<%= form_tag(:controller => "admin/comments", :action => "update_statuses") do %>
   <table>
   <% @comments.each do |comment| %>
      <tr>
          <td><%= check_box_tag("comments[]", comment.id) %></td>
          #More table cells with info about comment
          </tr>
   <%end%>
</table>
<%= select_tag "status", options_for_select(comment_statuses) %>
<%= submit_tag "Update" %>
<% end %>

How to get similar functionality in active admin?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦回梦里 2024-12-20 17:46:50

现在活动管理员缺少这样的功能。如果您想使用备用 Rails 管理界面,那么 rails_admin 更适合此类功能。

Right now active admin is missing such a feature. If you want to go for alternate rails admin interface then rails_admin is much better for such kind of functionality.

笑忘罢 2024-12-20 17:46:50

目前正在 ActiveAdmin 的 master 分支中开发和引入批处理功能。这是它的样子。

http://dribbble.com/shots/265461-Active-Admin-Batch -编辑弹出框

Batch functionality is currently being worked on and introduced in the master branch of ActiveAdmin. Heres how it looks.

http://dribbble.com/shots/265461-Active-Admin-Batch-edit-popover

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文