Sha256: 8a5f289503053884382ff0a527c74033e1ab812d523a54f1ee3ae273a352ea96

Contents?: true

Size: 1.25 KB

Versions: 3

Compression:

Stored size: 1.25 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 %>
</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 %>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sufia-3.0.0 app/views/generic_files/new.html.erb
sufia-2.0.1 app/views/generic_files/new.html.erb
sufia-2.0.0 app/views/generic_files/new.html.erb