-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreference_card_denied.html.erb
More file actions
13 lines (13 loc) · 1.57 KB
/
reference_card_denied.html.erb
File metadata and controls
13 lines (13 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
<% if @reference_card_form.denial_reason == 'Item listed at another library' %>
<p>Denied - Item listed at other library</p>
<p>Your request for a Reference Card has been denied. The item that you have listed <%= @reference_card_form.local_id %> is not in the Main (Gardner) Stacks. Please recheck <%= link_to 'UC Library Search', 'https://search.library.berkeley.edu' %> to see where it is located.</p>
<% elsif @reference_card_form.denial_reason == '3-month maximum exceeded' %>
<p>Denied - 3-month maximum exceeded</p>
<p>Your request for a Reference Card has been denied. The maximum allowed Reference Card term is 3 months in one year. You have exceeded the term limit.</p>
<% elsif @reference_card_form.denial_reason == 'Item at SLF-N' %>
<p>Denied - Item at SLF-N</p>
<p>Your request for a Reference Card has been denied. The item that you have listed <%= @reference_card_form.local_id %> is not located in the Main (Gardner) Stacks, it is located off site at the <%= link_to 'Systemwide Library Facility-North (SLF-N)', 'https://www.lib.berkeley.edu/libraries/nrlf' %>. You may contact SLF-N to request to have the item pulled so you may view it on-site at SLF-N. Alternatively, if you would like to view this item on the UC Berkeley campus, please call the <%= link_to 'Main Circulation Desk', 'https://www.lib.berkeley.edu/libraries/doe-library' %> to request to have the item sent from SLF-N to campus.</p>
<% else %>
<p>Denied - Other</p>
<p>Your request for a Reference Card has been denied for the following reason: <%= @reference_card_form.denial_reason %>.</p>
<% end %>