Sha256: 7bff0210e3fac0959d2904439c6b024fbfc003bace368055a2389739f53fcb94

Contents?: true

Size: 747 Bytes

Versions: 1

Compression:

Stored size: 747 Bytes

Contents

<%= form_for([:admin, @essence_file], :remote => true) do |f| %>
  <table>
    <tr>
      <td class="label"><%= f.label "title" %></td>
      <td class="input"><%= f.text_field "title", :class => 'thin_border' %></td>
    </tr>
    <tr>
      <td class="label"><%= f.label "css_class" %></td>
      <td class="select">
        <%= f.select(
          "css_class", [
            [_t("Layout default"), ""],
            [_t("above"), "no_float"],
            [_t("left"), "left"],
            [_t("right"), "right"]
          ],
          :class => 'alchemy_selectbox'
        ) %>
      </td>
    </tr>
    <tr>
      <td colspan="2" class="submit">
        <%= f.button _t("save"), :class => 'button' %>
      </td>
    </tr>
  </table>
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
alchemy_cms-2.5.0.b9 app/views/alchemy/admin/essence_files/edit.html.erb