Sha256: ad178a3c513d45c07d4885d2ba12a16a8203ec6fbc4031bdf938e98609da25a6
Contents?: true
Size: 1.57 KB
Versions: 18
Compression:
Stored size: 1.57 KB
Contents
<%# Copyright © 2012 The Pennsylvania State University Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. %> <h2>Upload</h2> <%# using partials rather than inlining, so implementers can add or change stuff on this page without much duplication %> <ul class="nav nav-tabs"> <li class="active"><a href="#local" data-toggle="tab"><i class="icon-desktop"></i> My Computer</a></li> <% if Sufia.config.dropbox_api_key %> <li><a href="#dropbox" data-toggle="tab"><i class="icon-inbox"></i> Dropbox</a></li> <% end %> <% if Sufia.config.enable_local_ingest %> <li><a href="#ingest" data-toggle="tab"><i class="icon-hdd"></i> Network/Server Location</a></li> <% end %> </ul> <div class="tab-content"> <div class="tab-pane active" id="local"> <%= render partial: 'multiple_upload' %> </div> <% if Sufia.config.dropbox_api_key %> <div class="tab-pane" id="dropbox"> <%= render partial: 'dropbox_import' %> </div> <% end %> <% if Sufia.config.enable_local_ingest %> <div class="tab-pane" id="ingest"> <%= render partial: 'generic_files/local_file_import' %> </div> <% end %> </div>
Version data entries
18 entries across 18 versions & 1 rubygems