Sha256: 904b74adc1401dbb6d10dee988a8ae02282845f9a5151eb6ff4d03e676e140cf

Contents?: true

Size: 627 Bytes

Versions: 3

Compression:

Stored size: 627 Bytes

Contents

<%= form_for(@template) do |f| %>
  <% if @template.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(@template.errors.count, "error") %> prohibited this template from being saved:</h2>

      <ul>
      <% @template.errors.full_messages.each do |msg| %>
        <li><%= msg %></li>
      <% end %>
      </ul>
    </div>
  <% end %>

  <div class="field">
    <%= f.label :template_name %><br />
    <%= f.text_field :template_name %>
  </div>
  <div class="field">
    <%= f.label :content %><br />
    <%= f.text_area :content %>
  </div>
  <div class="actions">
    <%= f.submit %>
  </div>
<% end %>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
stachio-0.0.3 app/views/stachio/templates/_form.html.erb
stachio-0.0.2 app/views/stachio/templates/_form.html.erb
stachio-0.0.1 app/views/stachio/templates/_form.html.erb