16
A
回答
15
合併的答案,加入少許:
大部分這是在this page on the wiki(或者我會盡快放在那裏)。
在其登記您的activeadmin(如應用程序/管理/ user.rb)模型的文件,你可以有
ActiveAdmin.register User do
# a simple string
index :title => "Here's a list of users" do
...
end
# using a method called on the instance of the model
show :title => :name do
...
end
# more flexibly using information from the model instance
show :title => proc {|user| "Details for "+user.name } do
...
end
# for new, edit, and delete you have to do it differently
controller do
def edit
# use resource.some_method to access information about what you're editing
@page_title = "Hey, edit this user called "+resource.name
end
end
end
1
按照this post,你可以用一條線就像選擇的動作如下:
@page_title="My Custom Title"
例如,爲了實現這個像「新」預先存在的動作,你會做什麼像這樣:
controller do
def new do
@page_title="My Custom Title"
new! do |format|
format.html{render "my_new"}
end
end
end
9
後搜索了它,
您可以添加:title屬性爲主動管理的塊。
如
1)要設置索引頁標題,
index :title => 'Your_page_name' do
....
end
2)要設置顯示頁面標題,
show :title => 'Your_page_name' do
....
end
0
只需瞭解更多詳情結帳做
index title: "Me new title"
相關問題
- 1. Active Admin分頁
- 2. 設置頁面標題yii2
- 3. 設置頁面標題
- 4. 設置頁面標題
- 5. OrchardCMS,如何將HTML標題標籤設置爲頁面標題
- 6. Active Admin編輯頁面的URL
- 7. 如何在單個頁面站點中設置頁面標題
- 8. 如何在自定義404頁面上設置頁面標題?
- 9. Rails 3- Active Admin(Formtastic),設置列寬
- 10. 如何在Active Admin中僅顯示編輯頁面中的值
- 11. 如何管理Active Admin中的頁面樹
- 12. 問題在內容頁面設置頁面標題時,標題母版頁設置
- 13. Rails Active Admin資源問題
- 14. 如何禁止編輯wp-admin中的頁面標題?
- 15. 在TYPO3中設置頁面標題
- 16. 陣營組件 - 設置頁面標題
- 17. 設置頁面標題通過$ .GET JSON
- 18. 設置Chrome的頁面標題window.open
- 19. Silverlight - 不要設置頁面標題
- 20. 從SWF設置頁面標題
- 21. 從HtmlHelper類設置頁面標題
- 22. Active Admin配置文檔
- 23. 如何將class =「active」設置爲活動頁面
- 24. 如何在Django Admin中設置其他內聯標題?
- 25. 使用MIddleman 3.0 - 如何在動態頁面上設置個別頁面標題?
- 26. 如何調用cms頁面中的phtml文件來設置頁面標題
- 27. 我該如何在Viewr頁面的PagerTitleStrip中設置標題
- 28. 如何在Google Analytics for iOS中設置頁面標題?
- 29. 如何在asp.net中設置模型的頁面標題?
- 30. 如何在Yii中設置Sitename頁面標題
:HTTPS:/ /github.com/gregbell/active_admin/wiki/Set-page-title – bunty