%= form_for(@template) do |f| %>
<% if @template.errors.any? %>
<%= pluralize(@template.errors.count, "error") %> prohibited this template from being saved:
<% @template.errors.full_messages.each do |msg| %>
- <%= msg %>
<% end %>
<% end %>
<%= f.label :template_name %>
<%= f.text_field :template_name %>
<%= f.label :description %>
<%= f.text_area :description %>
<%= f.label :content %>
<%= f.text_area :content %>
<%= f.submit %>
<% end %>