source: trunk/template/yoga/admin/history.tpl @ 1893

Last change on this file since 1893 was 1893, checked in by plg, 17 years ago

New: history search results summary gives the number of filtered lines and
give details about number of total users with the number of guests and the
member names (that can be added to filter criteria).

File size: 3.6 KB
Line 
1<div class="titrePage">
2  <ul class="categoryActions">
3    <li>
4      <a
5        href="{U_HELP}"
6        onclick="popuphelp(this.href); return false;"
7        title="{lang:Help}"
8      >
9        <img src="{themeconf:icon_dir}/help.png" class="button" alt="(?)">
10      </a>
11    </li>
12  </ul>
13  <h2>{lang:History} {TABSHEET_TITLE}</h2>
14  {TABSHEET}
15</div>
16
17<form class="filter" method="post" name="filter" action="{F_ACTION}">
18<fieldset>
19  <legend>{lang:Filter}</legend>
20  <ul>
21    <li><label>{lang:search_date_from}</label></li>
22    <li>
23      <select name="start_day">
24        <!-- BEGIN start_day -->
25        <option {start_day.SELECTED} value="{start_day.VALUE}">{start_day.OPTION}</option>
26        <!-- END start_day -->
27      </select>
28      <select name="start_month">
29        <!-- BEGIN start_month -->
30        <option {start_month.SELECTED} value="{start_month.VALUE}">{start_month.OPTION}</option>
31        <!-- END start_month -->
32      </select>
33      <input name="start_year" value="{START_YEAR}" type="text" size="4" maxlength="4" >
34    </li>
35  </ul>
36  <ul>
37    <li><label>{lang:search_date_to}</label></li>
38    <li>
39      <select name="end_day">
40        <!-- BEGIN end_day -->
41        <option {end_day.SELECTED} value="{end_day.VALUE}">{end_day.OPTION}</option>
42        <!-- END end_day -->
43      </select>
44      <select name="end_month">
45        <!-- BEGIN end_month -->
46        <option {end_month.SELECTED} value="{end_month.VALUE}">{end_month.OPTION}</option>
47        <!-- END end_month -->
48      </select>
49      <input name="end_year" value="{END_YEAR}" type="text" size="4" maxlength="4" >
50    </li>
51  </ul>
52
53  <label>
54    {lang:Element type}
55    <select name="types[]" multiple="multiple" size="4">
56      <!-- BEGIN types_option -->
57      <option value="{types_option.VALUE}" {types_option.SELECTED}>
58        {types_option.CONTENT}
59      </option>
60      <!-- END types_option -->
61    </select>
62  </label>
63
64  <label>
65    {lang:User}
66    <select name="user">
67      <!-- BEGIN user_option -->
68      <option value="{user_option.VALUE}" {user_option.SELECTED}>
69        {user_option.CONTENT}
70      </option>
71      <!-- END user_option -->
72    </select>
73  </label>
74
75  <label>
76    {lang:Image id}
77    <input name="image_id" value="{IMAGE_ID}" type="text" size="5">
78  </label>
79
80  <label>
81    {lang:File name}
82    <input name="filename" value="{FILENAME}" type="text">
83  </label>
84
85  <input class="submit" type="submit" name="submit" value="{lang:submit}" />
86</fieldset>
87</form>
88
89<!-- BEGIN summary -->
90<fieldset>
91  <legend>{lang:Summary}</legend>
92
93  <ul>
94    <li>{summary.NB_LINES}</li>
95    <li>{summary.FILESIZE}</li>
96    <li>
97      {summary.USERS}
98      <ul>
99        <li>{summary.MEMBERS}</li>
100        <li>{summary.GUESTS}</li>
101      </ul>
102    </li>
103  </ul>
104</fieldset>
105<!-- END summary -->
106
107<!-- BEGIN navigation -->
108<div class="admin">
109{navigation.NAVBAR}
110</div>
111<!-- END navigation -->
112
113<table class="table2" id="detailedStats">
114  <tr class="throw">
115    <th>{lang:date}</th>
116    <th>{lang:time}</th>
117    <th>{lang:user}</th>
118    <th>{lang:IP}</th>
119    <th>{lang:image}</th>
120    <th>{lang:Element type}</th>
121    <th>{lang:section}</th>
122    <th>{lang:category}</th>
123    <th>{lang:tags}</th>
124  </tr>
125<!-- BEGIN detail -->
126  <tr class="{detail.T_CLASS}">
127    <td class="hour">{detail.DATE}</td>
128    <td class="hour">{detail.TIME}</td>
129    <td>{detail.USER}</td>
130    <td>{detail.IP}</td>
131    <td>{detail.IMAGE}</td>
132    <td>{detail.TYPE}</td>
133    <td>{detail.SECTION}</td>
134    <td>{detail.CATEGORY}</td>
135    <td>{detail.TAGS}</td>
136  </tr>
137<!-- END detail -->
138</table>
139
140<!-- BEGIN navigation -->
141<div class="admin">
142{navigation.NAVBAR}
143</div>
144<!-- END navigation -->
Note: See TracBrowser for help on using the repository browser.