Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
ActiveAdmin
Search
Brian Lu
February 13, 2014
Programming
0
43
ActiveAdmin
An introduction to ActiveAdmin backend interface
Brian Lu
February 13, 2014
Tweet
Share
More Decks by Brian Lu
See All by Brian Lu
Ruby Conference Taiwan
brianlu365
0
30
Intro to Firmata
brianlu365
0
120
Introduction to Three.js
brianlu365
0
47
Ruby Geocoder
brianlu365
0
52
Sending Email in Your Rails App
brianlu365
0
43
Other Decks in Programming
See All in Programming
#kanrk08 / 公開版 PicoRubyとマイコンでの自作トレーニング計測装置を用いたワークアウトの理想と現実
bash0c7
1
790
PipeCDのプラグイン化で目指すところ
warashi
1
280
iOS 26にアップデートすると実機でのHot Reloadができない?
umigishiaoi
0
130
MCPを使ってイベントソーシングのAIコーディングを効率化する / Streamlining Event Sourcing AI Coding with MCP
tomohisa
0
120
Hack Claude Code with Claude Code
choplin
5
2.3k
10 Costly Database Performance Mistakes (And How To Fix Them)
andyatkinson
0
450
Flutterで備える!Accessibility Nutrition Labels完全ガイド
yuukiw00w
0
170
すべてのコンテキストを、 ユーザー価値に変える
applism118
3
1.4k
PHP 8.4の新機能「プロパティフック」から学ぶオブジェクト指向設計とリスコフの置換原則
kentaroutakeda
2
960
Team operations that are not burdened by SRE
kazatohiei
1
320
ニーリーにおけるプロダクトエンジニア
nealle
0
870
PicoRuby on Rails
makicamel
2
130
Featured
See All Featured
The Cult of Friendly URLs
andyhume
79
6.5k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.4k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
233
17k
Balancing Empowerment & Direction
lara
1
440
Producing Creativity
orderedlist
PRO
346
40k
Faster Mobile Websites
deanohume
307
31k
Become a Pro
speakerdeck
PRO
29
5.4k
Automating Front-end Workflow
addyosmani
1370
200k
Raft: Consensus for Rubyists
vanstee
140
7k
A Modern Web Designer's Workflow
chriscoyier
695
190k
Practical Orchestrator
shlominoach
189
11k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
18
980
Transcript
ActiveAdmin Backend AdminUI Framework
Why ActiveAdmin? • beautiful admin user interface • simple to
implement • very customizable
How to set it up? • For rails 4 support
gem 'activeadmin', github: 'gregbell/active_admin' • rails g active_admin:install creates /app/admin
Add an active admin model • rails g active_admin:resource ModelName
it creates a new file: app/admin/model_name.rb
Customizing form with nested resources • trip has many trip
details • remove_filter :trip_details • permit_params trip_details_attributes: […]
• in /admin/trip.rb
• in /model/trip.rb
Resources • Github https://github.com/gregbell/active_admin • Documentation http://www.activeadmin.info • Railscast http://railscasts.com/episodes/284-active-admin