summaryrefslogtreecommitdiffstats
path: root/app/views/versions
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2016-05-07 08:05:43 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2016-05-07 08:05:43 +0000
commitc418fab8a76b7672c4f341fb7c3e203ae92b50c0 (patch)
tree2f281eaac765994102b577c7a840f6ce6cd19d79 /app/views/versions
parent40ffde62219d348baaecb11d395e2dc6016efe37 (diff)
downloadredmine-c418fab8a76b7672c4f341fb7c3e203ae92b50c0.tar.gz
redmine-c418fab8a76b7672c4f341fb7c3e203ae92b50c0.zip
Use HTML5 date input fields instead of text fields with jquery ui date pickers (#19468).
Patch by Jan Schulz-Hofen. git-svn-id: http://svn.redmine.org/redmine/trunk@15375 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/versions')
-rw-r--r--app/views/versions/_form.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/versions/_form.html.erb b/app/views/versions/_form.html.erb
index db84f07eb..3d8ecd4da 100644
--- a/app/views/versions/_form.html.erb
+++ b/app/views/versions/_form.html.erb
@@ -6,7 +6,7 @@
<p><%= f.text_field :description, :size => 60 %></p>
<p><%= f.select :status, Version::VERSION_STATUSES.collect {|s| [l("version_status_#{s}"), s]} %></p>
<p><%= f.text_field :wiki_page_title, :label => :label_wiki_page, :size => 60, :disabled => @project.wiki.nil? %></p>
-<p><%= f.text_field :effective_date, :size => 10 %><%= calendar_for('version_effective_date') %></p>
+<p><%= f.date_field :effective_date, :size => 10 %><%= calendar_for('version_effective_date') %></p>
<p><%= f.select :sharing, @version.allowed_sharings.collect {|v| [format_version_sharing(v), v]} %></p>
<% @version.custom_field_values.each do |value| %>