source: extensions/BatchDownloader/admin/template/sets.tpl @ 16400

Last change on this file since 16400 was 16400, checked in by mistic100, 12 years ago
  • display creation date
  • improve set titles for Tags and Calendar
  • add Download history admin page

TODO : User Selection, localization, change archive name to more user-friendly one in the Force-Download

File size: 2.7 KB
RevLine 
[16379]1{combine_css path=$BATCH_DOWNLOAD_PATH|@cat:"admin/template/style.css"}
2
3<div class="titrePage">
[16392]4        <h2>Batch Downloader</h2>
[16379]5</div>
6
[16400]7<form class="filter" method="post" name="filter" action="{$F_FILTER_ACTION}">
[16379]8<fieldset>
[16400]9  <legend>{'Filter'|@translate}</legend>
10  <input type="hidden" name="page" value="user_list">
11
12  <label>{'Username'|@translate} <input type="text" name="username" value="{$F_USERNAME}"></label>
13
14  <label>
15  {'Set type'|@translate}
16  {html_options name=type options=$type_options selected=$type_selected}
17  </label>
[16379]18 
[16400]19  <label>
20  {'Status'|@translate}
21  {html_options name=status options=$status_options selected=$status_selected}
22  </label>
23
24  <label>
25  {'Sort by'|@translate}
26  {html_options name=order_by options=$order_options selected=$order_selected}
27  </label>
28
29  <label>
30  {'Sort order'|@translate}
31  {html_options name=direction options=$direction_options selected=$direction_selected}
32  </label>
33
34  <label>
35  &nbsp;
36  <span><input class="submit" type="submit" name="filter" value="{'Submit'|@translate}"> <a href="{$F_FILTER_ACTION}">{'Reset'|@translate}</a></span>
37  </label>
38
[16379]39</fieldset>
[16400]40
41</form>
42
43<table class="table2" width="97%">
44  <thead>
45    <tr class="throw">
46      <td class="user">{'Username'|@translate}</td>
47      <td class="type">{'Set type'|@translate}</td>
48      <td class="date">{'Creation date'|@translate}</td>
49      <td class="size">{'Total size'|@translate}</td>
50      <td class="images">{'Nb images'|@translate}</td>
51      <td class="archives">{'Nb archives'|@translate}</td>
52      <td class="status">{'Status'|@translate}</td>
53      <td class="action">{'Actions'|@translate}</td>
54    </tr>
55  </thead>
56
57  {foreach from=$sets item=set name=sets_loop}
58  <tr class="{if $smarty.foreach.sets_loop.index is odd}row1{else}row2{/if}">
59    <td>{$set.USERNAME}</td>
60    <td>{$set.NAME}</td>
61    <td style="text-align:center;">{$set.DATE_CREATION}</td>
62    <td>{$set.TOTAL_SIZE} MB</td>
63    <td>{$set.NB_IMAGES}</td>
64    <td>{$set.NB_ARCHIVES}</td>
65    <td>
66      {$set.STATUS}
67      {if $set.STATUS == 'download'}({$set.LAST_ZIP}/{$set.NB_ARCHIVES}){/if}
68    </td>
69    <td style="padding-left:25px;">
70      <a href="{$set.U_DELETE}" title="{'Delete this set'|@translate}" onClick="return confirm('{'Are your sure?'|@translate}');"><img src="admin/themes/default/icon/delete.png"></a>
71      {if $set.STATUS != 'done'}<a href="{$set.U_CANCEL}" title="{'Cancel this set'|@translate}" onClick="return confirm('{'Are your sure?'|@translate}');"><img src="admin/themes/default/icon/permissions.png"></a>{/if}
72    </td>
73  </tr>
74  {/foreach}
75 
76  {if not $sets}
77  <tr class="row2">
78    <td colspan="8" style="text-align:center;font-style:italic;">{'No result'|@translate}</td>
79  </tr>
80  {/if}
81</table>
Note: See TracBrowser for help on using the repository browser.