diff options
-rw-r--r-- | app/views/admin_holidays/index.html.erb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/views/admin_holidays/index.html.erb b/app/views/admin_holidays/index.html.erb index be1f672de..d4ee8706b 100644 --- a/app/views/admin_holidays/index.html.erb +++ b/app/views/admin_holidays/index.html.erb @@ -1,6 +1,21 @@ <% @title = 'Public Holidays' %> <h1><%= @title %></h1> +<p> + Alaveteli calculates the due dates of requests taking account of the + public holidays shown here. If you have set the + <code>WORKING_OR_CALENDAR_DAYS</code><a + href="http://alaveteli.org/docs/customising/config/#working_or_calendar_days" + target="_blank">(docs)</a> setting for Alaveteli to + <code>working</code>, the date when a response to a request is + officially overdue will be calculated in days that are not weekends + or public holidays. If you have set + <code>WORKING_OR_CALENDAR_DAYS</code> to <code>calendar</code>, the + date will be calculated in calendar days, but if the due date falls + on a public holiday or weekend day, then the due date is considered + to be the next week day that isn't a holiday. + +</p> <div class="btn-toolbar"> <div class="btn-group"> <%= link_to 'New holiday', new_admin_holiday_path, :class => "btn btn-primary", :id => 'new-holiday-button' %> |