Skip to content

Instantly share code, notes, and snippets.

@marklocklear
Created November 23, 2011 14:17
Show Gist options
  • Select an option

  • Save marklocklear/1388770 to your computer and use it in GitHub Desktop.

Select an option

Save marklocklear/1388770 to your computer and use it in GitHub Desktop.
<%= form_for @rubric do |f| %>
<%= f.error_messages %>
<p>
<%= f.label :name %><br />
<%= f.text_field :name %>
</p>
<p>
<%= f.label :competency %><br />
<%= f.text_field :competency, :size => 50 %>
</p>
<p>
<%= f.label 'Template' %><br />
<%= collection_select(@template_var, @template_var, @templates, :id, :name) %> #not sure what variables to use here?
</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment