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.
sqm-dashboards/app/views/schedules/show.html.haml

36 lines
715 B

%p#notice= notice
%p
%b Name:
= @schedule.name
%p
%b Description:
= @schedule.description
%p
%b School:
= link_to(@school.name, @school)
%p
%b Frequency hours:
= frequency_description(@schedule.frequency_hours)
%p
%b Start date:
= @schedule.start_date
%p
%b End date:
= @schedule.end_date
%p
%b Active:
= @schedule.active
%p
%b Random:
= @schedule.random
%p
%b Recipient list:
= link_to(@schedule.recipient_list.name, [@school, @schedule.recipient_list])
%p
%b Question list:
= link_to(@schedule.question_list.name, @schedule.question_list)
= link_to 'Edit', edit_school_schedule_path(@schedule.school, @schedule)
|
= link_to 'Back', school_schedules_path(@schedule.school)