riainvoice/application/modules/upload/views/dropzone-quote-html.php
2023-05-27 19:26:12 +05:30

78 lines
3.3 KiB
PHP

<div class="panel panel-default no-margin">
<!-- <div class="panel-heading">
<?php _trans('attachments'); ?>
</div>-->
<div class="panel-body clearfix">
<!-- The fileinput-button span is used to style the file input field as button -->
<!-- dropzone -->
<div class="row">
<div class="col-md-2">
<button type="button" class="btn btn-default fileinput-button">
<i class="fa fa-plus"></i> <?php _trans('add_files'); ?>
</button>
</div>
<div class="col-md-10">
<div id="actions" class="col-xs-12">
<!-- The global file processing state -->
<div class="fileupload-process">
<div id="total-progress" class="progress progress-striped active"
role="progressbar"
aria-valuemin="0" aria-valuemax="100" aria-valuenow="0">
<div class="progress-bar progress-bar-success" style="width:0%;"
data-dz-uploadprogress>
</div>
</div>
</div>
<div id="previews" class="table table-condensed files no-margin">
<div id="template" class="file-row">
<!-- This is used as the file preview template -->
<div>
<span class="preview">
<img data-dz-thumbnail/>
</span>
</div>
<div>
<p class="name" data-dz-name>
</p>
<strong class="error text-danger" data-dz-errormessage>
</strong>
</div>
<div>
<p class="size" data-dz-size>
</p>
<div class="progress progress-striped active"
role="progressbar" aria-valuemin="0"
aria-valuemax="100" aria-valuenow="0">
<div class="progress-bar progress-bar-success"
style="" data-dz-uploadprogress>
</div>
</div>
</div>
<div class="pull-left btn-group">
<button data-dz-download class="btn btn-sm btn-primary">
<i class="fa fa-download"></i>
<span><?php _trans('download'); ?></span>
</button>
<button data-dz-remove class="btn btn-danger btn-sm delete">
<i class="fa fa-trash-o"></i>
<span><?php _trans('delete'); ?></span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- stop dropzone -->
</div>
</div>