Skip to content

Instantly share code, notes, and snippets.

@cohitre
Created May 12, 2011 21:28
Show Gist options
  • Save cohitre/969496 to your computer and use it in GitHub Desktop.
Save cohitre/969496 to your computer and use it in GitHub Desktop.
app/helpers/templates/form_templates.haml
- define_template :labeled_text do |form, field_name, label, options|
.text-field
= form.label field_name, label
= form.text_field field_name, options
- define_template :labeled_text_area do |f, field_name, label, options|
.text-field
= form.label field_name, label
= form.text_area field_name, options
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment