From f1c66508e246a7ac2426dc4b7c0174e3ed4e9ce8 Mon Sep 17 00:00:00 2001 From: Shea Munion Date: Thu, 9 Feb 2017 13:51:32 -0600 Subject: [PATCH] 'short title' hint, pattern & title attr accept a-z0-9_- & prepend URL. --- app/views/admin/conferences/new.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/admin/conferences/new.html.haml b/app/views/admin/conferences/new.html.haml index 80307e4f..b9076495 100644 --- a/app/views/admin/conferences/new.html.haml +++ b/app/views/admin/conferences/new.html.haml @@ -4,8 +4,8 @@ = f.inputs 'Basic Information' do = f.input :title, hint: "The name of your conference as it shall appear throughout the site. Example: 'OpenSUSE Conference 2013'", input_html: { required: 'required' } - = f.input :short_title, hint: "A short and unique handle for your conference, using only lower-case letters, numbers and underscores. This will be used to identify your conference in URLs etc. Example: 'froscon2011'", - input_html: { required: 'required' } + = f.input :short_title, hint: "A short and unique handle for your conference, using only lower-case letters, numbers, underscores, and dashes. This will be used to identify your conference in URLs etc. Example: 'froscon2011'", + input_html: { required: 'required', pattern: '[a-z0-9_-]+', title: 'Only lower-case letters, numbers, underscores, and dashes.' }, :prepend => conferences_url + '/' = f.inputs 'Scheduling' do = f.input :timezone, as: :time_zone, default: Time.zone.name, hint: 'Please select in what time zone your conference will take place.' = f.input :start_date, as: :string, input_html: { id: 'conference-start-datepicker', required: 'required' }