Skip to content

Instantly share code, notes, and snippets.

@almaron
Created June 8, 2012 19:10
Show Gist options
  • Save almaron/2897643 to your computer and use it in GitHub Desktop.
Save almaron/2897643 to your computer and use it in GitHub Desktop.
#--Model
class Forum::Forum < ActiveRecord::Base
#has a field called 'name'
#--Form (in the view)
<%= form_for @forum do |f| %>
<%= f.label :name %>: <%=f.text_field :name %><br />
<%= f.submit "Send" %>
<% end %>
#--Locale
en:
helpers:
label:
forum:
forum:
name: "Forum name"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment