This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
2009-05-22 06:43:52 +00:00
|
|
|
<p>
|
|
|
|
<%= f.label :name, "Name" %>
|
|
|
|
<%= f.text_field :name, :class => 'text' %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<%= f.label :layout_name, "Layout Name" %>
|
|
|
|
<%= f.text_field :layout_name, :class => 'text' %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<%= f.label :content, "Content" %>
|
|
|
|
<%= f.text_area :content, :size => '100x30' %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<%= f.label :is_published, "Is Published" %>
|
|
|
|
<%= f.radio_button :is_published, true %>Yes <%= f.radio_button :is_published, false %> No
|
2009-05-22 06:51:32 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<%= f.label :external_link, "External Link" %>
|
|
|
|
<%= f.text_field :external_link %>
|
2009-05-22 06:43:52 +00:00
|
|
|
</p>
|