aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/form_helpers.md
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-04-03 07:55:49 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-04-03 07:57:50 +0900
commitef6699b6ca2c11b6510bbf7d75ba7706b67ab9b3 (patch)
tree8514592bdf56d09d6779befd38c9b856e1aaeda9 /guides/source/form_helpers.md
parentaa2cafbad6f9de01086a993af6cfc0ddd34ec1cd (diff)
downloadrails-ef6699b6ca2c11b6510bbf7d75ba7706b67ab9b3.tar.gz
rails-ef6699b6ca2c11b6510bbf7d75ba7706b67ab9b3.tar.bz2
rails-ef6699b6ca2c11b6510bbf7d75ba7706b67ab9b3.zip
remove deprecated `datetime_field` from guide [ci skip]
`datetime_field` was deprecated in 316811b4d3f4e5a1a7bcd03de97c67218770e333
Diffstat (limited to 'guides/source/form_helpers.md')
-rw-r--r--guides/source/form_helpers.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/guides/source/form_helpers.md b/guides/source/form_helpers.md
index 422bc647ef..048fe190e8 100644
--- a/guides/source/form_helpers.md
+++ b/guides/source/form_helpers.md
@@ -174,7 +174,6 @@ URL fields, email fields, number fields and range fields:
<%= search_field(:user, :name) %>
<%= telephone_field(:user, :phone) %>
<%= date_field(:user, :born_on) %>
-<%= datetime_field(:user, :meeting_time) %>
<%= datetime_local_field(:user, :graduation_day) %>
<%= month_field(:user, :birthday_month) %>
<%= week_field(:user, :birthday_week) %>
@@ -195,7 +194,6 @@ Output:
<input id="user_name" name="user[name]" type="search" />
<input id="user_phone" name="user[phone]" type="tel" />
<input id="user_born_on" name="user[born_on]" type="date" />
-<input id="user_meeting_time" name="user[meeting_time]" type="datetime" />
<input id="user_graduation_day" name="user[graduation_day]" type="datetime-local" />
<input id="user_birthday_month" name="user[birthday_month]" type="month" />
<input id="user_birthday_week" name="user[birthday_week]" type="week" />