2009-05-22 06:43:52 +00:00
|
|
|
<p>
|
|
|
|
<%= f.label :name, "Name" %>
|
|
|
|
<%= f.text_field :name, :class => 'text' %>
|
|
|
|
</p>
|
|
|
|
|
2010-01-08 10:36:36 +00:00
|
|
|
<p>
|
|
|
|
<%= f.label :title, "Title en" %>
|
|
|
|
<%= f.text_field :title_en, :class => 'text' %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<%= f.label :title, "Title zh_tw" %>
|
|
|
|
<%= f.text_field :title_zh_tw, :class => 'text' %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<%= f.label :parent_page_name, "Parent Page Name" %>
|
|
|
|
<%= f.text_field :parent_page_name, :class => 'text' %>
|
|
|
|
</p>
|
|
|
|
|
2009-05-22 06:43:52 +00:00
|
|
|
<p>
|
|
|
|
<%= f.label :layout_name, "Layout Name" %>
|
|
|
|
<%= f.text_field :layout_name, :class => 'text' %>
|
|
|
|
</p>
|
|
|
|
|
2009-06-22 08:04:06 +00:00
|
|
|
<p id="content_zh_tw_block">
|
2009-06-19 09:31:10 +00:00
|
|
|
<%= f.label "content_zh_tw", "Content (zh_tw)" %>
|
|
|
|
<%= f.text_area "content_zh_tw", :size => '100x30' %>
|
2009-05-22 06:43:52 +00:00
|
|
|
</p>
|
|
|
|
|
2009-06-22 08:04:06 +00:00
|
|
|
<p><a href="#" id="toggle_content_en_block">Edit english</a></p>
|
|
|
|
|
|
|
|
<p id="content_en_block">
|
|
|
|
<%= f.label "content_en", "Content (en)" %>
|
|
|
|
<%= f.text_area "content_en", :size => '100x30' %>
|
|
|
|
</p>
|
|
|
|
|
2009-05-22 06:43:52 +00:00
|
|
|
<p>
|
|
|
|
<%= f.label :is_published, "Is Published" %>
|
2010-01-08 10:36:36 +00:00
|
|
|
<%= f.radio_button :is_published, true %>Yes <%= f.radio_button :is_published, false %> No
|
2009-05-22 06:51:32 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
2010-01-11 09:09:50 +00:00
|
|
|
<%= f.label :component_name, "Component Name" %>
|
|
|
|
<%= f.text_field :component_name %>
|
2009-06-01 02:54:16 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
2010-01-08 10:36:36 +00:00
|
|
|
<%= f.label :external_link, "External Link" %>
|
|
|
|
<%= f.text_field :external_link %>
|
|
|
|
</p>
|
2009-06-22 08:04:06 +00:00
|
|
|
|
|
|
|
<% content_for :page_specific_javascript do %>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
$('#content_en_block').hide();
|
|
|
|
$('#toggle_content_en_block').click(function(){
|
|
|
|
$('#content_en_block').toggle();
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<% end -%>
|