151 lines
5.0 KiB
Plaintext
151 lines
5.0 KiB
Plaintext
#data_files_content
|
|
#data_files_big_container.container-fluid
|
|
#file_folders=render :partial => "admin/file_folders/file_folders"
|
|
|
|
|
|
#file_folders_navbar
|
|
=render :partial => "admin/file_folders/file_folders_navbar"
|
|
|
|
|
|
|
|
|
|
|
|
=render :partial => "data_files_container"
|
|
|
|
|
|
%form#fileupload{:action => admin_data_files_path(:id => @data_file.id, :file_folder_id => params[:file_folder_id], :manager => params[:manager], :multiple => params[:multiple]),:method=>"POST", :enctype=>"multipart/form-data", :style => "display:inline;"}
|
|
%input{:name => "redirect", :type => "hidden", :value => "/"}/
|
|
|
|
|
|
%nav.navbar.navbar-default.navbar-fixed-bottom#image_files_navbar{:style => "position:absolute;"}
|
|
|
|
.container-fluid
|
|
|
|
%ul.nav.navbar-nav.navbar-right
|
|
|
|
.fileupload-progress.fade{:style => "float:left;"}
|
|
#upload_details{:style => ""}
|
|
.content
|
|
.fileupload-buttonbar
|
|
%button.btn.btn-warning.cancel{:type => "reset"}
|
|
%i.icon-ban-circle.icon-white
|
|
%span Cancel upload
|
|
%span.fileupload-loading
|
|
|
|
%table.table.table-striped{:role => "presentation"}
|
|
%tbody.ulpoad_files
|
|
|
|
|
|
|
|
.progress-extended{:style => "float:left;padding: 10px;font-size:14px;line-height:20px;"}
|
|
|
|
|
|
.progress.progress-success.progress-striped.active{"aria-valuemax" => "100", "aria-valuemin" => "0", :role => "progressbar",:style => "width:200px;float:left;margin: 10px;height:20px;"}
|
|
.bar{:style => "width:0%;"}
|
|
|
|
|
|
|
|
.navbar-header
|
|
%span.navbar-brand Fichiers
|
|
|
|
|
|
|
|
.collapse.navbar-collapse
|
|
%ul.nav.navbar-nav
|
|
%li
|
|
%a{:href => "#", :onclick => "$(this).next('input').click();return false;"}
|
|
%span.fileinput-button{}
|
|
%i.icon-plus.icon-white
|
|
%span Ajouter des fichiers
|
|
%input{:multiple => "", :name => "files[]", :type => "file", :style => "display:none;"}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
:plain
|
|
<!-- The template to display files available for upload -->
|
|
<script id="template-upload" type="text/x-tmpl">
|
|
{% for (var i=0, file; file=o.files[i]; i++) { %}
|
|
<tr class="template-upload fade">
|
|
<td>
|
|
<span class="preview"></span>
|
|
</td>
|
|
<td>
|
|
<p class="name">{%=file.name%}</p>
|
|
{% if (file.error) { %}
|
|
<div><span class="label label-important">Error</span> {%=file.error%}</div>
|
|
{% } %}
|
|
</td>
|
|
<td>
|
|
<p class="size">{%=o.formatFileSize(file.size)%}</p>
|
|
{% if (!o.files.error) { %}
|
|
<div class="progress progress-success progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0"><div class="bar" style="width:0%;"></div></div>
|
|
{% } %}
|
|
</td>
|
|
<td>
|
|
{% if (!o.files.error && !i && !o.options.autoUpload) { %}
|
|
<button class="btn btn-primary start">
|
|
<i class="icon-upload icon-white"></i>
|
|
<span>Start</span>
|
|
</button>
|
|
{% } %}
|
|
{% if (!i) { %}
|
|
<button class="btn btn-warning cancel">
|
|
<i class="icon-ban-circle icon-white"></i>
|
|
<span>Cancel</span>
|
|
</button>
|
|
{% } %}
|
|
</td>
|
|
</tr>
|
|
{% } %}
|
|
</script>
|
|
<!-- The template to display files available for download -->
|
|
<script id="template-download" type="text/x-tmpl">
|
|
{% for (var i=0, file; file=o.files[i]; i++) { %}
|
|
<tr class="template-download fade", :style => "display:none;">
|
|
|
|
</tr>
|
|
{% } %}
|
|
</script>
|
|
|
|
|
|
|
|
|
|
:coffeescript
|
|
$('#fileupload').fileupload({
|
|
paramName:"files",
|
|
dataType:"script",
|
|
autoUpload:true,
|
|
filesContainer:".ulpoad_files"
|
|
|
|
}).bind('fileuploadadded',(e, data)->
|
|
$("#upload_details").show();
|
|
).bind('fileuploadfinished',(e, data)->
|
|
$("#upload_details").hide();
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|