Rails: Titlecase Only Capitalizes First Word in f.label

I can't comment because of my rep. To answer webaholik's question, you can use label_tag in this case:

<%= label_tag :time_balance, "Time Balance" %>

try this.

<%= f.label :time_balance, "Time Balance" %> <br />

Label expects the first argument to be the method_name on the object the form is for, and defaults to just using it, unless you specify it explicitly as part of the second argument which is content/options.