| 12345678910111213141516171819202122232425262728293031323334353637 |
- <div id="tm-container">
- <form method="post" id="post-tus-upload">
-
- <div class="row">
- <div class="col-lg-2 margin-bottom-20">
- <input type="file" multiple="multiple" class="" id="tus-upload-control">
- <button type="button" class="btn btn-success" id="tus-upload-select-dialog"><span class="icon-folder-open"></span> <?php echo _('Choose files...'); ?></button>
- <button type="button" class="btn btn-primary" id="btn-tus-upload" data-postid="1"><span class="icon-play2"></span></button>
- </div>
- <div class="col-lg-10">
-
- <div id="upload-list-table-wrapper">
- <table class="table table-sm table-hover" id="tus-upload-file-list">
- <thead>
- <tr>
- <!--<th width="5%"><?php echo _('#ID'); ?></th>-->
- <th width="3%"></th>
- <th><?php echo _('Name'); ?></th>
- <th width="15%" class="text-center"></th>
- <th width="10%">MB</th>
- <th width="5%" class="text-center">
- <button type="button" class="btn btn-warning btn-sm btn-clean-upload-list"><span class="icon-paint-format"></span></button>
- </th>
- </tr>
- </thead>
-
- <tbody>
-
- </tbody>
- </table>
- </div>
-
- </div>
- </div>
- </form>
- </div>
- </div>
|