orbit-basic/app/views/admin/layouts/_form.html.erb

15 lines
306 B
Plaintext
Raw Normal View History

2009-07-06 08:23:34 +00:00
<p>
<%= f.label :name, t('admin.name') %>
2009-07-06 08:23:34 +00:00
<%= f.text_field :name, :class => 'text' %>
</p>
2010-01-28 09:42:55 +00:00
<p>
<%= f.label :description, t('admin.description') %>
2010-01-28 09:42:55 +00:00
<%= f.text_field :description, :class => 'text' %>
</p>
<p>
<%= f.label "content", t('admin.content') %>
<%= f.text_area :content, :size => '100x30' %>
2009-07-06 08:23:34 +00:00
</p>