You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

20 lines
439 B

= error_messages_for 'event'
%dl
%dt
%label{:for => "event_title"} Título
%dd= text_field 'event', 'title'
%dt
%label{:for => "event_date"} Data
%dd= date_select 'event', 'date', :order => [:day, :month, :year]
%dt
%label{:for => "event_time"} Horário
%dd= time_select 'event', 'time'
%dt
%label{:for => "event_description"} Descrição
%dd= preserve(text_area('event', 'description', :rows => 6))