Created
March 11, 2015 17:17
-
-
Save EminenceHC/3292f611445561dd1236 to your computer and use it in GitHub Desktop.
Default value if param present?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% if params[:referral_id].present? %> | |
<%= f.input :referral_id, input_html: {value: params[:referral_id]} %> | |
<% else %> | |
<%= f.input :referral_id %> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment