mirror of
https://github.com/kleeja-official/kleeja.git
synced 2025-12-15 20:49:41 +01:00
84 lines
4.0 KiB
HTML
84 lines
4.0 KiB
HTML
|
|
|
||
|
|
<!-- Breadcrumbs -->
|
||
|
|
<ol class="breadcrumb">
|
||
|
|
<li class="breadcrumb-item"><a href="./">{lang.R_CPINDEX}</a></li>
|
||
|
|
<li class="breadcrumb-item active">{lang.R_FILES} (<span>{current_page}/{total_pages}</span>)</li>
|
||
|
|
</ol>
|
||
|
|
|
||
|
|
<IF NAME="is_search">
|
||
|
|
<div class="card">
|
||
|
|
<span>{lang.FIND_IP_FILES} ( {nums_rows} ) {lang.FILE} <IF NAME="nums_rows"> | <a href="{deletelink}" onclick="javascript:get_kleeja_link(this.href, '#content', {confirm:true}); return false;">{lang.DELETEALLRES}</a></IF></span>
|
||
|
|
</div>
|
||
|
|
</IF>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<form method="post" name="filesform" action="{action}" id="files_form">
|
||
|
|
|
||
|
|
<IF NAME="no_results">
|
||
|
|
<div class="alert alert-info">
|
||
|
|
{lang.NO_RESULT_USE_SYNC}
|
||
|
|
</div>
|
||
|
|
<ELSE>
|
||
|
|
|
||
|
|
|
||
|
|
<!-- start data table -->
|
||
|
|
<div class="table-responsive">
|
||
|
|
<table class="table table-bordered table-hover table-striped table-sm" width="100%" cellspacing="0">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th><a href="javascript:void(0);" onclick="checkAll(document.filesform, '_del', 'su');" title="{lang.DELETE}">#</a></th>
|
||
|
|
<th style="width:20px;"></th>
|
||
|
|
<th style="white-space:nowrap;">
|
||
|
|
<a title="{lang.ALPHABETICAL_ORDER_FILES}"
|
||
|
|
href="{ord_action}&order_by=real_filename">{lang.FILENAME}</a>
|
||
|
|
<a href="{page2_action}&order_way=1"><i class="fa fa-sort-asc" title="↑"></i></a>
|
||
|
|
<a href="{page2_action}&order_way=2"><i class="fa fa-sort-desc"
|
||
|
|
title="↓"></i></a>
|
||
|
|
</th>
|
||
|
|
<th><a title="{lang.ORDER_SIZE}" href="{ord_action}&order_by=size">{lang.SIZE}</a></th>
|
||
|
|
<th><a href="{ord_action}&order_by=folder">{lang.FILDER}</a></th>
|
||
|
|
<th><a href="{ord_action}&order_by=user">{lang.BY}</a></th>
|
||
|
|
<th><a href="{ord_action}&order_by=user_ip">{lang.IP}</a></th>
|
||
|
|
<th><a title="{lang.ORDER_TOTAL_DOWNLOADS}" href="{ord_action}&order_by=uploads"><i class="fa fa-download" title="{lang.FILEUPS}" data-toggle="tooltip"></i></a></th>
|
||
|
|
<th><a href="{ord_action}&order_by=report"><i class="fa fa-flag" title="{lang.NUMPER_REPORT}" data-toggle="tooltip"></i></a></th>
|
||
|
|
<th><a href="{ord_action}&order_by=time">{lang.FILEDATE}</a></th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
<LOOP NAME="arr">
|
||
|
|
<tr id="su[{{id}}]" class="osilver">
|
||
|
|
<td><input type="checkbox" name="del_{{id}}" value="{{id}}" onclick="change_color(this,'su[{{id}}]');" rel="_del" /></td>
|
||
|
|
<td style="width:20px;"><img src="{{typeicon}}" alt="{{type}}" title="{{type}}" data-toggle="tooltip"/></td>
|
||
|
|
<td title="{{fullname}}" data-toggle="tooltip">{{name}}</td>
|
||
|
|
<td>{{size}}</td>
|
||
|
|
<td>{{folder}}</td>
|
||
|
|
<td>{{user}}</td>
|
||
|
|
<td>{{ip}} <a title="{lang.SHOWFILESBYIP}" href="{{showfilesbyip}}"><i class="fa fa-search"></i></a></td>
|
||
|
|
<td><IF LOOP="direct"><i class="fa fa-bell-slash-o" title="{lang.DIRECT_FILE_NOTE}" data-toggle="tooltip"></i><ELSE>{{ups}}</IF></td>
|
||
|
|
<td>{{report}}</td>
|
||
|
|
<td title="{{time}}" data-toggle="tooltip">{{time_human}}</td>
|
||
|
|
<!-- admin files data td2 extra -->
|
||
|
|
</tr>
|
||
|
|
</LOOP>
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
<!-- end data table -->
|
||
|
|
|
||
|
|
<div class="form-group">
|
||
|
|
<!--<div class="col">[ <a href="javascript:void(0);" onclick="checkAll(document.filesform, '_del', 'su');">{lang.CHECK_ALL}</a> ]</div>-->
|
||
|
|
|
||
|
|
<input type="submit" class="btn btn-outline-primary" name="submit" value="{lang.DEL_SELECTED}">
|
||
|
|
</div>
|
||
|
|
|
||
|
|
|
||
|
|
<!-- pagination -->
|
||
|
|
{page_nums}
|
||
|
|
|
||
|
|
</IF>
|
||
|
|
|
||
|
|
{H_FORM_KEYS}
|
||
|
|
</form>
|
||
|
|
|