diff --git a/app/views/pages/_bib_forms.html.erb b/app/views/pages/_bib_forms.html.erb deleted file mode 100644 index 9f9e0b6f..00000000 --- a/app/views/pages/_bib_forms.html.erb +++ /dev/null @@ -1,35 +0,0 @@ -<%= form_tag('/bibliographic', method: 'get', class: 'form-horizontal') do %> -
- <%= label_tag(:bib_id, 'Get an Alma Record:', class: 'col-sm-2 control-label') %> -
- <%= hidden_field_tag(:items_only, 0) %> - <%= hidden_field_tag(:holdings_only, 0) %> - <%= number_field_tag(:bib_id, nil, class: 'form-control', placeholder: 'AlmaID') %> -
- <%= submit_tag('Submit', class: 'col-sm-1 btn btn-default') %> -
-<% end %> - -<%= form_tag('/bibliographic', method: 'get', class: 'form-horizontal') do %> -
- <%= label_tag(:bib_id, 'Get Holdings:', class: 'col-sm-2 control-label') %> -
- <%= hidden_field_tag(:items_only, 0) %> - <%= hidden_field_tag(:holdings_only, 1) %> - <%= number_field_tag(:bib_id, nil, class: 'form-control', placeholder: 'AlmaID') %> -
- <%= submit_tag('Submit', class: 'col-sm-1 btn btn-default') %> -
-<% end %> - -<%= form_tag('/bibliographic', method: 'get', class: 'form-horizontal') do %> -
- <%= label_tag(:bib_id, 'Get Items (and Status):', class: 'col-sm-2 control-label') %> -
- <%= hidden_field_tag(:items_only, 1) %> - <%= hidden_field_tag(:holdings_only, 0) %> - <%= number_field_tag(:bib_id, nil, class: 'form-control', placeholder: 'AlmaID') %> -
- <%= submit_tag('Submit', class: 'col-sm-1 btn btn-default') %> -
-<% end %> diff --git a/app/views/pages/index.html.erb b/app/views/pages/index.html.erb index ef1ea283..aacf0645 100644 --- a/app/views/pages/index.html.erb +++ b/app/views/pages/index.html.erb @@ -1,3 +1 @@

PUL Bibliographic Data Web Service

-

By Alma ID...

-<%= render 'pages/bib_forms' %>