每次我使用scaffold
生成相关文件。
我必须将*.html.erb
修改为*.html.haml
并将内容更改为我的偏好布局。
有没有更好的做法来实现这个目标?
感谢。
例如,我的模型:excel, :model, :result_file, :user_id, :version, :xml
中包含这些列。
我省略了默认的index.html.erb
文件(scaffold
为我生成了它。)
我将更改自定义默认布局中的index.html.erb
。
我宁愿每次脚手架都会为我生成这种模式。
我知道我可以修改.rvm
~/.rvm/gems/ruby-1.9.3-p448/gems/railties-3.2.13/lib/rails/generators/erb/scaffold
但这是一个好习惯吗?
%h1 ND
%div{:class => "hero-unit"}
%large
使用前請先安裝 Firefox plugin
%h2.center
= link_to "新增一筆測試", new_nd_multi_lang_path, |
:class=> "btn btn-primary autotest"
%table#rf_tbl.table.table-condensed.table-striped
%tr
%th Date
%th User
%th Model
%th Version
%th Excel
%th Xml
%th Result file
%th
%th
%th
- @nd_multi_langs.each do |nd_multi_lang|
%tr.center
%td= nd_multi_lang.created_at.strftime("%Y-%m-%d %H:%M")
%td= nd_multi_lang.user.email
%td= nd_multi_lang.model
%td= nd_multi_lang.version
%td
= link_to 'Excel', nd_multi_lang.excel.to_s
%td
= link_to 'XML', nd_multi_lang.xml.to_s
%td
= link_to 'Download', nd_multi_lang.result_file.to_s, :class=> "btn btn-info"
%br/
答案 0 :(得分:1)
将gem用于haml-rails,默认情况下应该这样做。
您编辑了自己的问题以提出完全不同的问题>。<
以下是回答新问题的指南。