Created
February 19, 2016 04:23
-
-
Save sbpipb/97586bd62b245190595e to your computer and use it in GitHub Desktop.
History Page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# app/views/layouts/history.html.arb | |
panel "Historia" do | |
table_for assigns[:versions] | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# app/admin/plan.rb | |
ActiveAdmin.register Plan do | |
member_action :history do | |
@plan = Plan.find(params[:id]) | |
@versions = @plan.versions | |
render "layouts/history" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment