Created
September 9, 2012 04:42
-
-
Save nfriend21/3682638 to your computer and use it in GitHub Desktop.
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
<%= form_for(@task) do |f| %> | |
<%= f.label :content, "Task" %> | |
<%= f.text_field :content%> | |
<br> | |
<%= f.label :due_date %> | |
<%= f.date_select :due_date %> | |
<br> | |
<br> | |
<% if current_page?(new_task_path) %> | |
<%= f.submit "Create Task", class: "btn btn-large btn-primary" %> | |
<% else %> | |
<%= f.submit "Update Task", class: "btn btn-large btn-primary" %> | |
<% end %> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment